From d775e67387e6d14ebcef820d4a5436dc0d768fd6 Mon Sep 17 00:00:00 2001 From: Darby Frey Date: Mon, 26 Jun 2023 08:21:48 -0500 Subject: [PATCH] Added ruby 3.1 and 3.2 to testing matrix --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index acf4100..7e7b848 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,8 +6,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' - ruby: [2.7, '3.0', head] + ruby: [2.7, 3.0, 3.1, 3.2, head] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2