Skip to content

Commit

Permalink
fix: surround ruby versions with quotes to fix the broken CI matrix
Browse files Browse the repository at this point in the history
Version 3.0 was treated as "3", leading to testing the latest 3.X. I also added the intermediate versions for thorough coverage
  • Loading branch information
knarewski committed Sep 12, 2024
1 parent ff5e915 commit 68138da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.3, 2.7, 3.0]
ruby: ['2.3', '2.7', '3.0', '3.1', '3.2', '3.3']
name: install dependencies and run tests
steps:
- name: install image processing dependencies
Expand Down

0 comments on commit 68138da

Please sign in to comment.