From db31bd215ca86cd116f125e1f21de58ef16bc627 Mon Sep 17 00:00:00 2001 From: Peer Allan Date: Mon, 10 Jun 2024 14:06:52 -0500 Subject: [PATCH] Update CI exclusions Remove combinations that are not supported Ruby vs AR --- .github/workflows/ci.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 558db61..7f50dc4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,19 @@ jobs: - 6.1.0 - 7.0.0 - 7.1.0 + exclude: + - ruby-version: 3.2 + active-record-version: 6.0.0 + - ruby-version: 3.2 + active-record-version: 6.1.0 + - ruby-version: 3.2 + active-record-version: 7.0.0 + - ruby-version: 3.1 + active-record-version: 6.0.0 + - ruby-version: 3.1 + active-record-version: 6.1.0 + - ruby-version: 3.0 + active-record-version: 6.0.0 env: ACTIVE_RECORD_VERSION: "${{ matrix.active-record-version }}" steps: