From 0aa65f2c6780944976ef8d48bb4968d6823e04db 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 all newer Ruby versions. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a119c9d..76c24c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,11 @@ jobs: matrix: include: - { ruby: 2.7 } + - { ruby: 3.0 } + - { ruby: 3.1 } + - { ruby: 3.2 } + - { ruby: 3.3 } + - { ruby: 3.4 } steps: - uses: actions/checkout@v2