Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actualize Ruby list in CI #748

Merged
merged 2 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,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 @@ -35,7 +35,7 @@ jobs:
run: |
bundle exec rake
- name: Run codecov on latest ruby
if: matrix.ruby == '3.3'
if: matrix.ruby == '3.4'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

* Add `ruby-3.2` to CI
* Add `ruby-3.3` to CI
* Add `ruby-3.4` to CI
* Add `dependabot` check for `GitHub Actions`

### Fixes
Expand All @@ -26,6 +27,7 @@
* Remove all existing crm tags and cases in specs before running tests
* Remove all existing crm tasks and tasks categories before running tests
* Fixes from `rubocop-1.65.0` upgrade (`Gemspec/AddRuntimeDependency`)
* Remove `ruby-3.0` from CI, since it's EOLed

## 1.0.1 (2022-02-21)

Expand Down
Loading