From cc4cb0e81e4d30532a824af18dd535c017f36f93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Sun, 30 Jun 2024 08:18:18 +0200 Subject: [PATCH] Add Ruby 3.3 to the test matrix While here, quote versions, as `3.0` is considered as a floating point value, and GitHub actions get confused when the fractional part of a number is 0 and understand `3`, which in turn use the latest version of Ruby 3.x (so, yes, this was already testing against Ruby 3.3 and in fact add tests for 3.0, but don't tell anyone :wink:). --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bd5221..a3226c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,11 @@ jobs: strategy: matrix: ruby-version: - - 2.7 - - 3.0 - - 3.1 - - 3.2 + - "2.7" + - "3.0" + - "3.1" + - "3.2" + - "3.3" fail-fast: false steps: - uses: actions/checkout@v2