Skip to content

Commit

Permalink
🐛 Proper Ruby Versions
Browse files Browse the repository at this point in the history
> A general rule is if the version text has a decimal point and ends with a zero, it should be quoted. If one wants to quote all the version values for consistency, that's fine.

ref: ruby/setup-ruby#252 (comment)
Signed-off-by: Peter Boling <peter.boling@gmail.com>
  • Loading branch information
pboling committed Feb 16, 2022
1 parent 7564b81 commit 32ee313
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/danger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
ruby:
- 2.7
- "2.7"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fail-fast: false
matrix:
ruby:
- 2.7
- "2.7"
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/supported.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
ruby:
- truffleruby-head
- ruby-head
- 3.1
- 3.0
- 2.7
- "3.1"
- "3.0"
- "2.7"
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allow_failure || endsWith(matrix.ruby, 'head') }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unsupported.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.5
- "2.6"
- "2.5"
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.allow_failure || endsWith(matrix.ruby, 'head') }}
steps:
Expand Down

0 comments on commit 32ee313

Please sign in to comment.