Skip to content

Commit

Permalink
Take the minor version of Ruby into account
Browse files Browse the repository at this point in the history
The numeric version `3.0` is treated as `3`. As result, the latest Ruby 3.x version s used for testing instead of Ruby 3.0.
Using the text notation `'3.0'` makes Github Action to use the proper version for testing (Ruby 3.0)
  • Loading branch information
sharshenov committed Aug 26, 2024
1 parent 448119d commit c71295a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
fail-fast: false
matrix:
ruby-version:
- 2.7
- 3.0
- 3.1
- 3.2
- 3.3
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit c71295a

Please sign in to comment.