Skip to content

Commit 52986e6

Browse files
authored
ci: add ruby 3.3 to test matrix and remove 2.7, 3.0 (#164)
2.7 and 3.0 are EOL, so no longer officially supported.
1 parent f717f5b commit 52986e6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ruby-tests.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ jobs:
2121
- faraday-1
2222
- faraday-2
2323
ruby-version:
24+
- "3.3"
2425
- "3.2"
2526
- "3.1"
26-
- "3.0"
27-
- "2.7"
2827
- jruby
2928
- truffleruby
3029

@@ -36,11 +35,11 @@ jobs:
3635
ruby-version: ${{ matrix.ruby-version }}
3736
- name: Set environment
3837
run: echo "COVERAGE=true" >> "$GITHUB_ENV"
39-
if: matrix.ruby-version == '3.2' && matrix.gemfile == 'faraday-2'
38+
if: matrix.ruby-version == '3.3' && matrix.gemfile == 'faraday-2'
4039
- name: Install dependencies
4140
run: bundle install
4241
- name: Run tests
4342
run: bundle exec rake test
4443
- name: Upload Coverage
4544
uses: paambaati/[email protected]
46-
if: matrix.ruby-version == '3.2' && matrix.gemfile == 'faraday-2'
45+
if: matrix.ruby-version == '3.3' && matrix.gemfile == 'faraday-2'

0 commit comments

Comments
 (0)