From 5a5d2c3ee552c883c1708c461d5a31d49a734d1e Mon Sep 17 00:00:00 2001 From: Peter Postma Date: Fri, 5 Jan 2024 11:54:24 +0100 Subject: [PATCH] Test against Ruby 3.3 and remove unsupported Ruby versions. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 240e0b6..14ff518 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: [2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2] + ruby-version: [2.7, 3.0, 3.1, 3.2, 3.3] steps: - uses: actions/checkout@v2