We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 478ad19 commit acbd525Copy full SHA for acbd525
.github/workflows/test.yml
@@ -5,6 +5,7 @@ on: [push]
5
jobs:
6
test:
7
strategy:
8
+ fail-fast: false
9
matrix:
10
ruby-version:
11
- '3.1'
@@ -21,6 +22,10 @@ jobs:
21
22
# https://www.fastruby.io/blog/ruby/rails/versions/compatibility-table.html
23
- ruby-version: '3.1'
24
gemfile: 'gemfiles/Gemfile.rails80'
25
+ # rails 7.0 requires ruby <= 3.3
26
+ # https://www.fastruby.io/blog/ruby/rails/versions/compatibility-table.html
27
+ - ruby-version: '3.4'
28
+ gemfile: 'gemfiles/Gemfile.rails70'
29
30
name: Ruby ${{ matrix.ruby-version }} / Bundle ${{ matrix.gemfile }}
31
0 commit comments