File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- ruby : ['2.7', '3.2']
10
+ ruby : ['2.7', '3.2', '3.3' ]
11
11
appraisal : ["rails-6", "rails-7"]
12
12
steps :
13
13
- uses : actions/checkout@v1
19
19
uses : ruby/setup-ruby@v1
20
20
with :
21
21
ruby-version : ${{ matrix.ruby }}
22
- - name : Build and test with Rake
22
+ - name : Build and test with Rake (Ruby 2.7 only)
23
+ if : ${{ matrix.ruby == '2.7' }}
23
24
run : |
24
- gem install bundler
25
+ gem install bundler -v 2.4.22
25
26
bundle install --jobs 4 --retry 3
26
27
bundle exec appraisal install
27
28
bundle exec appraisal ${{ matrix.appraisal }} rake
29
+ - name : Build and test with Rake (Ruby 3.2+ only)
30
+ if : ${{ matrix.ruby != '2.7' }}
31
+ run : |
32
+ gem install bundler
33
+ bundle install --jobs 4 --retry 3
34
+ bundle exec appraisal install
35
+ bundle exec appraisal ${{ matrix.appraisal }} rake
You can’t perform that action at this time.
0 commit comments