From 140d0cc11f5e14d3a598207d4b727bf947658c6b Mon Sep 17 00:00:00 2001 From: Orien Madgwick <497874+orien@users.noreply.github.com> Date: Tue, 6 Feb 2024 07:27:47 +1100 Subject: [PATCH] CI: Test on Ruby 3.3 --- .github/workflows/test.yml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 272235c..2ec76c9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,21 +1,15 @@ -name: test - -on: [push,pull_request] - +on: [push, pull_request] jobs: test: strategy: matrix: - ruby: ["2.7", "3.0", "3.1", "3.2"] + ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"] runs-on: ubuntu-latest name: Test (Ruby ${{ matrix.ruby }}) steps: - - uses: actions/checkout@v3 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - name: Run the default task - run: | - bundle install - bundle exec rake + bundler-cache: true + - run: bundle exec rake