Skip to content

Commit

Permalink
build: coverage ci should fail fast
Browse files Browse the repository at this point in the history
The whole point of the coverage workflow is to combine the results at
the end. If one job fails, stop everything.
  • Loading branch information
nedbat committed Feb 28, 2021
1 parent f5d6043 commit 3f38567
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3f38567

Please sign in to comment.