Skip to content

Commit 397d077

Browse files
authored
Fix testing ruby versions (#139)
1 parent 48ff4f8 commit 397d077

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
ruby-version: [2.6, 2.7, 3.0, 3.1, head, jruby-head]
10+
ruby-version: [3.0, 3.1, 3.2, 3.3, 3.4, jruby-head]
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Set up Ruby ${{ matrix.ruby-version }}
1414
uses: ruby/setup-ruby@v1
1515
with:
@@ -18,7 +18,7 @@ jobs:
1818
- name: Run tests
1919
run: bundle exec rspec
2020
- name: Code Climate Test Reporter
21-
if: matrix.ruby-version == '3.0'
21+
if: matrix.ruby-version == '3.4'
2222
uses: aktions/codeclimate-test-reporter@v1
2323
with:
2424
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}

0 commit comments

Comments
 (0)