Skip to content

Commit

Permalink
Actualize Ruby list in CI (#599)
Browse files Browse the repository at this point in the history
* Add `ruby-3.4`
* Remove `ruby-3.0`, since it's EOLed
  • Loading branch information
VitaliySerov authored Dec 26, 2024
1 parent 21b0180 commit 59118c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
continue-on-error: ${{ matrix.allow-failures }}
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
ruby: ['3.1', '3.2', '3.3', '3.4']
allow-failures: [false]
include:
- ruby: head
Expand All @@ -32,7 +32,7 @@ jobs:
run: |
bundle exec rake
- uses: codecov/codecov-action@v5
if: matrix.ruby == '3.3'
if: matrix.ruby == '3.4'
with:
fail_ci_if_error: true
env:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@

## master (unreleased)

### New Features

* Add `ruby-3.4` to CI

### Changes

* Fixes from `rubocop-1.63.1` upgrade
* Fixes from `rubocop-1.65.0` upgrade (`Gemspec/AddRuntimeDependency`)
* Code changes after update to `rubocop-1.68.0`
* Remove `ruby-3.0` from CI, since it's EOLed

## 0.5.0 (2024-02-02)

Expand Down

0 comments on commit 59118c2

Please sign in to comment.