Skip to content

Commit

Permalink
Fix testing ruby versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tilfin committed Feb 16, 2025
1 parent 48ff4f8 commit 59749c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [2.6, 2.7, 3.0, 3.1, head, jruby-head]
ruby-version: [3.0, 3.1, 3.2, 3.3, 3.4, jruby-head]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Run tests
run: bundle exec rspec
- name: Code Climate Test Reporter
if: matrix.ruby-version == '3.0'
if: matrix.ruby-version == '3.4'
uses: aktions/codeclimate-test-reporter@v1
with:
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand Down

0 comments on commit 59749c7

Please sign in to comment.