From 2aa52f14473daa2e0886e67e2ddc745e44c7a26f Mon Sep 17 00:00:00 2001 From: Ethan White Date: Sat, 11 May 2024 14:44:57 -0400 Subject: [PATCH] Don't stop other jobs if one fails, but fail the tests if any fail --- .github/workflows/test-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 61721d7..381f048 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -12,10 +12,10 @@ name: R-CMD-check-release jobs: R-CMD-check: - continue-on-error: true strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] + fail-fast: false runs-on: ${{ matrix.os }} env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}