Skip to content

Commit 7906470

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

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

.github/workflows/test.yml

+2-13
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: ["3.2", "3.3", "3.4"]
1717

1818
steps:
1919
- uses: actions/checkout@v1
@@ -22,21 +22,10 @@ jobs:
2222
with:
2323
ruby-version: ${{ matrix.ruby-version }}
2424
bundler-cache: true
25-
- name: Uninstall existing Bundler
26-
run: |
27-
gem uninstall bundler -a -x || true
28-
- name: Install Bundler
29-
run: |
30-
if [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then
31-
gem install bundler -v "~> 2.4.0"
32-
else
33-
gem install bundler
34-
fi
3525
- name: Build and run tests
3626
env:
3727
COVERAGE: true
3828
TERM: xterm
3929
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4030
run: |
41-
bundle install --jobs 4 --retry 3
42-
bundle exec rake test
31+
bundle exec rake test

0 commit comments

Comments
 (0)