Skip to content

Commit

Permalink
use strings, not floats to denote ruby versions (#623)
Browse files Browse the repository at this point in the history
otherwise `3.0` is translated to `3` which means something different :)
  • Loading branch information
evgeni authored Nov 29, 2023
1 parent f4f4649 commit c5e56c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
fail-fast: false
matrix:
ruby:
- 2.7
- 3.0
- 3.1
- '2.7'
- '3.0'
- '3.1'
steps:
- name: Get hammer-cli
uses: actions/checkout@v2
Expand Down

0 comments on commit c5e56c7

Please sign in to comment.