Skip to content

Commit 805b022

Browse files
authored
Merge pull request #33 from andyw8/andyw8/update-ci
Update CI to use Ruby 3.1 to Ruby 3.4
2 parents e533d14 + 5fd4b30 commit 805b022

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
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
@@ -31,14 +31,11 @@ jobs:
3131
gem install bundler -v "~> 2.3.27"
3232
elif [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then
3333
gem install bundler -v "~> 2.4.0"
34-
else
35-
gem install bundler
3634
fi
3735
- name: Build and run tests
3836
env:
3937
COVERAGE: true
4038
TERM: xterm
4139
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4240
run: |
43-
bundle install --jobs 4 --retry 3
44-
bundle exec rake test
41+
bundle exec rake test

0 commit comments

Comments
 (0)