From 437d6f2cc49bc83573a7a8bcd4d2eff95c1c83f4 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Thu, 16 Jan 2025 08:30:45 +0000 Subject: [PATCH] Expand Ruby CI matrix Test Ruby versions up until Ruby 3.2. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a119c9d..49c52f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,9 @@ jobs: matrix: include: - { ruby: 2.7 } + - { ruby: '3.0' } + - { ruby: 3.1 } + - { ruby: 3.2 } steps: - uses: actions/checkout@v2