From c743ba1c93ed3697a77c1f6bcbab0f7a4e0e54e2 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Sat, 27 Jun 2026 22:30:06 -0700 Subject: [PATCH] Test the full supported Ruby range in CI The CI matrix only tested the endpoints (3.1 and 3.4), leaving 3.2 and 3.3 uncovered even though the gemspec supports them (required_ruby_version >= 3.1). Add 3.2 and 3.3 so a regression on an in-range Ruby is caught. Signed-off-by: Tim Smith --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abea6695..abff2918 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ '3.1', '3.4' ] + ruby: [ '3.1', '3.2', '3.3', '3.4' ] name: Test with Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v6