From 44d8f062ae1e7819d21c2310772adee48973c27d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl-Ian?= Date: Tue, 1 Oct 2024 16:54:39 +0200 Subject: [PATCH] Reintroduce Ruby 2.7 in test matrix (as it's Rails 7.0 minimum requirements) --- .github/workflows/unit-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index b774f46..802049a 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ["3.0", "3.1", "3.2", "3.3"] + ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"] gemfile: [ dev/gemfiles/rails-7.0.x.gemfile, dev/gemfiles/rails-7.1.x.gemfile, @@ -18,6 +18,8 @@ jobs: ] exclude: # Exclude rubies < 3.1 for ActiveModel >= 7.2 + - ruby: "2.7" + gemfile: Gemfile - ruby: "3.0" gemfile: Gemfile env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps