From f8a833212e83fcf0011f304cb1603dd8646bd434 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Mon, 19 Aug 2024 12:32:14 +0200 Subject: [PATCH] CI: Add Ruby 3.3 (#20) --- .github/workflows/ci.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a9d7ac..4558890 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,26 +16,22 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - + - uses: actions/checkout@v4 - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: ruby-version: 2.7 bundler-cache: true - - - name: Standard - run: - bundle exec standardrb + - run: bundle exec standardrb build: needs: [linting] runs-on: ubuntu-latest strategy: matrix: - ruby: ['2.6', '2.7', '3.0', '3.1', '3.2'] + ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 @@ -44,5 +40,4 @@ jobs: bundler-cache: true - name: Test - run: | - bundle exec rake + run: bundle exec rake