File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 strategy :
99 matrix :
10- ruby : ['2.7', ' 3.2', '3.3']
10+ ruby : ['3.2', '3.3']
1111 appraisal : ["rails-6", "rails-7"]
1212 steps :
1313 - uses : actions/checkout@v1
1919 uses : ruby/setup-ruby@v1
2020 with :
2121 ruby-version : ${{ matrix.ruby }}
22- - name : Build and test with Rake (Ruby 2.7 only)
23- if : ${{ matrix.ruby == '2.7' }}
24- run : |
25- gem install bundler -v 2.4.22
26- bundle install --jobs 4 --retry 3
27- bundle exec appraisal install
28- bundle exec appraisal ${{ matrix.appraisal }} rake
29- - name : Build and test with Rake (Ruby 3.2+ only)
30- if : ${{ matrix.ruby != '2.7' }}
22+ - name : Build and test with Rake
3123 run : |
3224 gem install bundler
3325 bundle install --jobs 4 --retry 3
You can’t perform that action at this time.
0 commit comments