Skip to content

Commit a26be13

Browse files
committed
See if this helps with tests
1 parent 989f2b5 commit a26be13

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

Diff for: .github/workflows/run_tests.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
ruby: ['2.7', '3.2']
10+
ruby: ['2.7', '3.2', '3.3']
1111
appraisal: ["rails-6", "rails-7"]
1212
steps:
1313
- uses: actions/checkout@v1
@@ -19,9 +19,17 @@ jobs:
1919
uses: ruby/setup-ruby@v1
2020
with:
2121
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' }}
2324
run: |
24-
gem install bundler
25+
gem install bundler -v 2.4.22
2526
bundle install --jobs 4 --retry 3
2627
bundle exec appraisal install
2728
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

0 commit comments

Comments
 (0)