From 8e0363a576f361731e8e31207094597f461e33ad Mon Sep 17 00:00:00 2001 From: Orien Madgwick <497874+orien@users.noreply.github.com> Date: Sat, 17 Feb 2024 17:43:07 +1100 Subject: [PATCH] CI: add Ruby 3.1 and 3.2 to the test matrix --- .github/workflows/ci.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 661646e..1d72648 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,23 +1,18 @@ name: CI - on: [push, pull_request] - jobs: test: strategy: fail-fast: false matrix: - ruby: ['2.5', '2.6', '2.7', '3.0'] + ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2'] runs-on: ubuntu-latest - steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - name: Install dependencies - run: bundle install - - name: Run tests - run: bundle exec rake + bundler-cache: true + - run: bundle exec rake