Skip to content

Commit 5fd4b30

Browse files
committed
Update CI for latest Ruby versions
1 parent 00ccb50 commit 5fd4b30

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/test.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
ruby-version: ["2.5", "2.6", "2.7", "3.0"]
16+
ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
1717

1818
steps:
1919
- uses: actions/checkout@v1
@@ -29,14 +29,11 @@ jobs:
2929
run: |
3030
if [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then
3131
gem install bundler -v "~> 2.4.0"
32-
else
33-
gem install bundler
3432
fi
3533
- name: Build and run tests
3634
env:
3735
COVERAGE: true
3836
TERM: xterm
3937
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4038
run: |
41-
bundle install --jobs 4 --retry 3
42-
bundle exec rake test
39+
bundle exec rake test

0 commit comments

Comments
 (0)