From ea025a1f3f24d0b101ec67b0ec63100e3db9ec69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibaut=20Barr=C3=A8re?= Date: Mon, 20 Oct 2025 14:57:43 +0200 Subject: [PATCH] Add Ruby 3.4 to test matrix --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fef3913..eebfaec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,9 +7,11 @@ jobs: matrix: os: [ubuntu-latest] ruby: + # EOL: 2025-03-26 - '3.1' - '3.2' - '3.3' + - '3.4' - head - jruby - jruby-head @@ -25,7 +27,7 @@ jobs: - run: bundle exec rake # NOTE: calling "bundle install" because the cache apparently did not update due to the gemspec injection - run: bundle install && bundle exec standardrb - if: matrix.ruby == '3.3' # not using "head" because rubocop won't work there yet + if: matrix.ruby == '3.4' # not using "head" because rubocop won't work there yet # What's below helps having a single "status check" for mergeability, without # having to add each new version to the list of expected status checks in GitHub. # See https://github.community/t/status-check-for-a-matrix-jobs/127354/7