Skip to content

Commit

Permalink
Use strings for ruby versions in github action (#197)
Browse files Browse the repository at this point in the history
Avoid `3.0` parsing as ruby 3 and installing 3.x, instead use `'3.0'` to fix the minor
  • Loading branch information
pariser authored Jul 5, 2023
1 parent edfbe1b commit 53d1094
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rspec_rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
strategy:
matrix:
include: # use bundler 2.3 for ruby versions < 2.6 (https://bundler.io/compatibility.html)
- ruby-version: 2.6
- ruby-version: '2.6'
bundler-version: latest
- ruby-version: 2.7
- ruby-version: '2.7'
bundler-version: latest
- ruby-version: 3.0
- ruby-version: '3.0'
bundler-version: latest
- ruby-version: 3.1
- ruby-version: '3.1'
bundler-version: latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 53d1094

Please sign in to comment.