From e24bc056e09bf5fcffae2c90fd0ddd3c68d6371c Mon Sep 17 00:00:00 2001 From: Scott Walkinshaw Date: Tue, 12 Jan 2021 15:59:52 -0500 Subject: [PATCH 1/2] Try ruby 3.0 --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c5876b..b957c51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,11 @@ jobs: strategy: fail-fast: false matrix: - ruby: [2.3, 2.6, 2.7] - graphql_version: ['1.9.19', '1.10.2'] + ruby: [2.3, 2.6, 2.7, 3.0] + graphql_version: ['1.9.19', '1.11.6'] + exclude: + - graphql_version: '1.9.19' + ruby: 3.0 steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 From 23a2eacdb2fc0f2b3aa4d918998cc350dc0909b0 Mon Sep 17 00:00:00 2001 From: Scott Walkinshaw Date: Tue, 12 Jan 2021 16:22:02 -0500 Subject: [PATCH 2/2] drop 2.6 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b957c51..7cbcd80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [2.3, 2.6, 2.7, 3.0] + ruby: [2.3, 2.7, 3.0] graphql_version: ['1.9.19', '1.11.6'] exclude: - graphql_version: '1.9.19'