From 344b6c90e09c6bc9235edac141a68a5ef1ddf6f2 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 13 Dec 2023 09:08:51 +1100 Subject: [PATCH] Adds Ruby 3.2 and 3.3 to test matrix --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 85a3793..698db25 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [2.5, 2.6, 2.7, "3.0", 3.1, head] + ruby: [2.5, 2.6, 2.7, "3.0", 3.1, 3.2, 3.3, head] continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} steps: - uses: actions/checkout@v2