Skip to content

Commit

Permalink
ci: add ruby 3.3 to test matrix and remove 2.7, 3.0
Browse files Browse the repository at this point in the history
2.7 and 3.0 are EOL, so no longer officially supported.
  • Loading branch information
irphilli committed Jul 13, 2024
1 parent f717f5b commit 8ec55c4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ruby-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ jobs:
- faraday-1
- faraday-2
ruby-version:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
- "2.7"
- jruby
- truffleruby

Expand All @@ -36,11 +35,11 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}
- name: Set environment
run: echo "COVERAGE=true" >> "$GITHUB_ENV"
if: matrix.ruby-version == '3.2' && matrix.gemfile == 'faraday-2'
if: matrix.ruby-version == '3.3' && matrix.gemfile == 'faraday-2'
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake test
- name: Upload Coverage
uses: paambaati/[email protected]
if: matrix.ruby-version == '3.2' && matrix.gemfile == 'faraday-2'
if: matrix.ruby-version == '3.3' && matrix.gemfile == 'faraday-2'

0 comments on commit 8ec55c4

Please sign in to comment.