Merge pull request #3860 from gravitystorm/yaml_quoting
Quote ruby versions in yaml
This commit is contained in:
commit
e69716ca05
2 changed files with 2 additions and 2 deletions
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -7,7 +7,7 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
env:
|
env:
|
||||||
os: ubuntu-20.04
|
os: ubuntu-20.04
|
||||||
ruby: 2.7
|
ruby: '2.7'
|
||||||
jobs:
|
jobs:
|
||||||
rubocop:
|
rubocop:
|
||||||
name: RuboCop
|
name: RuboCop
|
||||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ubuntu: [20.04, 22.04]
|
ubuntu: [20.04, 22.04]
|
||||||
ruby: [2.7, 3.0, 3.1]
|
ruby: ['2.7', '3.0', '3.1']
|
||||||
runs-on: ubuntu-${{ matrix.ubuntu }}
|
runs-on: ubuntu-${{ matrix.ubuntu }}
|
||||||
env:
|
env:
|
||||||
RAILS_ENV: test
|
RAILS_ENV: test
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue