From f62236d301278053b0db82d50c68544abc88a959 Mon Sep 17 00:00:00 2001 From: Nicolas Rodriguez Date: Thu, 12 Sep 2024 03:42:41 +0200 Subject: [PATCH] Update GithubActions config --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e6fb7a..8df9dc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,19 +13,20 @@ on: jobs: rspec: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest + strategy: fail-fast: false matrix: ruby: + - '3.3' - '3.2' - '3.1' - - '3.0' - - '2.7' + - 'head' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Ruby uses: ruby/setup-ruby@v1 @@ -34,4 +35,4 @@ jobs: bundler-cache: true - name: RSpec - run: bundle exec rspec + run: bin/rspec