From 15e220c9826107b9aa66d8dcb5f83a752ebf97b0 Mon Sep 17 00:00:00 2001 From: Paul Mucur Date: Sun, 24 Sep 2023 12:53:37 +0100 Subject: [PATCH] Run compilation tests against Ruby 3.3.0-preview2 Before precompiling the native gems against the latest, unreleased version of Ruby, check the gem compiles and passes its tests when the user has to compile against it on install. Note preview versions of Ruby are not available for Windows, see https://github.com/ruby/setup-ruby#supported-versions See https://github.com/mudge/re2/issues/108 --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a9e8fd65..006aec7d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -70,6 +70,7 @@ jobs: strategy: matrix: ruby: + - '3.3' - '3.2' - '3.1' - '3.0' @@ -124,7 +125,7 @@ jobs: fail-fast: false matrix: runs-on: ["ubuntu-latest", "macos-latest"] - ruby: ["2.6", "2.7", "3.0", "3.1", "3.2"] + ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"] include: - ruby: "2.6" runs-on: "windows-2019"