From 657484123c7480d57960142de30d6a82848ab70f Mon Sep 17 00:00:00 2001 From: Alex Rodionov Date: Fri, 31 May 2024 08:40:23 -0700 Subject: [PATCH] don't fail-fast --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21a8191..dee37ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ jobs: setup-bazel: runs-on: ${{ matrix.os }}-latest strategy: + fail-fast: false matrix: os: - macos @@ -20,6 +21,9 @@ jobs: - windows steps: - run: rm $(which bazel) + if: matrix.os != 'windows' + - run: Remove-Item -Path (Get-Command bazel.exe).Source + if: matrix.os == 'windows' - uses: actions/checkout@v4 - uses: ./ with: