From 0b336b14c0bf6115d8d40e1114d2902a8d1469c4 Mon Sep 17 00:00:00 2001 From: Lovro Bikic Date: Tue, 3 Oct 2023 14:17:35 +0200 Subject: [PATCH 1/3] Add Ruby 3.2 to CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fae848b4..c82bf2a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04, macos-10.15] - ruby: [2.6, 2.7, '3.0', 3.1, jruby-head] + ruby: [2.6, 2.7, '3.0', 3.1, 3.2, jruby-head] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 From 18871b84fc51252b919f07b6a90207cff47b5358 Mon Sep 17 00:00:00 2001 From: Lovro Bikic Date: Tue, 3 Oct 2023 14:42:51 +0200 Subject: [PATCH 2/3] Use ubuntu-latest and macos-latest runners --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c82bf2a0..2760c913 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-10.15] + os: [ubuntu-latest, macos-latest] ruby: [2.6, 2.7, '3.0', 3.1, 3.2, jruby-head] runs-on: ${{ matrix.os }} steps: From 61040c92121be7bf1d056a1bdc11ee5249918ffc Mon Sep 17 00:00:00 2001 From: Lovro Bikic Date: Tue, 3 Oct 2023 14:51:13 +0200 Subject: [PATCH 3/3] Fix condition --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2760c913..d75160af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,5 +22,5 @@ jobs: - run: bundle exec rubocop - run: bundle exec rspec - name: E2E tests - if: ${{ success() && matrix.os != 'macos-10.15' }} + if: ${{ success() && matrix.os != 'macos-latest' }} run: bash spec/e2e/e2e_run.sh