From 3f3856702d7e88065dd0e13f022a4d7c69eeaf6b Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 28 Feb 2021 08:02:28 -0500 Subject: [PATCH] build: coverage ci should fail fast The whole point of the coverage workflow is to combine the results at the end. If one job fails, stop everything. --- .github/workflows/coverage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 61ec9865e..ee798ada1 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -38,7 +38,8 @@ jobs: # Windows PyPy doesn't seem to work? - os: windows-latest python-version: "pypy3" - fail-fast: false + # If one job fails, stop the whole thing. + fail-fast: true steps: - name: "Check out the repo"