From 61040c92121be7bf1d056a1bdc11ee5249918ffc Mon Sep 17 00:00:00 2001 From: Lovro Bikic Date: Tue, 3 Oct 2023 14:51:13 +0200 Subject: [PATCH] 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