From d57d77bd017cc15cdef77563e71b37cd4469fc57 Mon Sep 17 00:00:00 2001 From: Benoit Tigeot Date: Mon, 3 Feb 2025 11:36:54 +0100 Subject: [PATCH] Add Ruby 3.4 + ActiveRecord 8 --- .github/workflows/ci.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1752f8a..3253dcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,19 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.1", "3.2", "3.3"] - activerecord: [61, 70, 71] + ruby: ["3.1", "3.2", "3.3", "3.4"] + activerecord: [61, 70, 71, 80] + # Exclude Ruby 3.1 with ActiveRecord 8 but allow others + exclude: + - ruby: "3.1" + activerecord: 80 + include: + - ruby: "3.2" + activerecord: 80 + - ruby: "3.3" + activerecord: 80 + - ruby: "3.4" + activerecord: 80 steps: - uses: actions/checkout@v4