mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-04-03 10:25:50 +00:00
Fix lint errors
This commit is contained in:
parent
0498bc5684
commit
b12e3b5b13
3 changed files with 12 additions and 5 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
|
@ -2,7 +2,10 @@ name: CI
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ '**' ]
|
||||
branches: ["**"]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
# Set the job key. The key is displayed as the job name
|
||||
|
|
@ -10,7 +13,7 @@ jobs:
|
|||
tests:
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [ '3.4', '3.3', '3.2' ]
|
||||
ruby: ["3.4", "3.3", "3.2"]
|
||||
|
||||
name: Tests - Ruby ${{ matrix.ruby }}
|
||||
# Set the type of machine to run on
|
||||
|
|
|
|||
5
.github/workflows/linter.yml
vendored
5
.github/workflows/linter.yml
vendored
|
|
@ -16,7 +16,10 @@ name: Lint Code Base
|
|||
#############################
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ '**' ]
|
||||
branches: ["**"]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
###############
|
||||
# Set the Job #
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"threshold": 1,
|
||||
"ignore": ["spec/**"]
|
||||
}
|
||||
"ignore": ["spec/**"],
|
||||
"reporters": ["threshold"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue