From 3c79cfbfb5b1e14b25aeec3fd508f736cb027658 Mon Sep 17 00:00:00 2001 From: Sam Giffney Date: Thu, 2 Jul 2026 09:12:05 +1000 Subject: [PATCH] Add Ruby 4.0 to CI test matrix Ruby 4.0 was released on 2025-12-25. Add it to the rspec build matrix so the gem is tested against the current stable Ruby. The full suite (74 examples) passes on Ruby 4.0.5 with no code changes required. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e282e49..f622ca2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.1", "3.2", "3.3", "3.4", "jruby"] + ruby: ["3.1", "3.2", "3.3", "3.4", "4.0", "jruby"] steps: - name: Checkout code