From c43e60629e145b0c4d9f22bea1abb2a68c896c80 Mon Sep 17 00:00:00 2001 From: Niklas van Schrick Date: Sun, 24 Nov 2024 01:27:19 +0100 Subject: [PATCH] Extend test matrix to cover all supported ruby versions --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 181c788..dd579d2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,10 @@ jobs: strategy: matrix: ruby: + - '3.0.0' # using 3.0.0 instead of latest patch as 3.0.0 is the minimum specified in the gemspec + - '3.1.6' - '3.2.2' + - '3.3.6' steps: - uses: actions/checkout@v4