From 8897552bf8266029a8c9eda78adaf7fa9ca12ee0 Mon Sep 17 00:00:00 2001 From: Pedro Carbajal Date: Fri, 22 Nov 2024 23:13:24 +0900 Subject: [PATCH] Remove incompatible combinations of Ruby/ActiveRecord versions from CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05f7c1d..a33e898 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,12 @@ jobs: ruby: ['3.0', 3.1, 3.2, 3.3, '3.4.0-preview1'] activerecord: [6.1, '7.0', 7.1, 7.2, '8.0'] exclude: + - ruby: '3.0' + activerecord: 7.2 + - ruby: '3.0' + activerecord: '8.0' + - ruby: '3.1' + activerecord: '8.0' - ruby: '3.4.0-preview1' activerecord: 6.1 - ruby: '3.4.0-preview1'