From a6c90c8ddec7248acf6f5eae483420b1568cfeca Mon Sep 17 00:00:00 2001 From: Scott Walkinshaw Date: Tue, 16 Jan 2024 10:57:34 -0500 Subject: [PATCH] Fix CI matrix Fix supported Ruby versions --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef4bb56..42b60dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,8 +10,13 @@ jobs: strategy: fail-fast: false matrix: - ruby: [2.4, 2.7, '3.1', '3.2'] + ruby: [2.4, 2.7, 3.1, 3.3] graphql_version: ['~> 1.12.18', '~> 1.13', '~> 2.0'] + exclude: + - ruby: 2.4 + graphql_version: '~> 1.12.18' + - ruby: 2.4 + graphql_version: '~> 1.13' steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1