Fix lint errors

This commit is contained in:
Sami Samhuri 2025-06-08 13:24:05 -07:00
parent 0498bc5684
commit b12e3b5b13
No known key found for this signature in database
3 changed files with 12 additions and 5 deletions

View file

@ -2,7 +2,10 @@ name: CI
on: on:
pull_request: pull_request:
branches: [ '**' ] branches: ["**"]
permissions:
contents: read
jobs: jobs:
# Set the job key. The key is displayed as the job name # Set the job key. The key is displayed as the job name
@ -10,7 +13,7 @@ jobs:
tests: tests:
strategy: strategy:
matrix: matrix:
ruby: [ '3.4', '3.3', '3.2' ] ruby: ["3.4", "3.3", "3.2"]
name: Tests - Ruby ${{ matrix.ruby }} name: Tests - Ruby ${{ matrix.ruby }}
# Set the type of machine to run on # Set the type of machine to run on

View file

@ -16,7 +16,10 @@ name: Lint Code Base
############################# #############################
on: on:
pull_request: pull_request:
branches: [ '**' ] branches: ["**"]
permissions:
contents: read
############### ###############
# Set the Job # # Set the Job #

View file

@ -1,4 +1,5 @@
{ {
"threshold": 1, "threshold": 1,
"ignore": ["spec/**"] "ignore": ["spec/**"],
"reporters": ["threshold"]
} }