From 1ad494196c37d46a42cdfdfcab54b6b29090e080 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Mon, 17 Jan 2022 12:26:22 -0500 Subject: [PATCH] ci: update to cover Ruby 3.1 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1641492..e16fbc8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: - ruby-version: "3.0" + ruby-version: "3.1" bundler-cache: true - run: bundle exec rake rubocop @@ -30,7 +30,7 @@ jobs: needs: ["rubocop"] strategy: matrix: - ruby: ["2.5", "2.6", "2.7", "3.0", "head", truffleruby-head] + ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "head", "truffleruby-head"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2