Skip to content

Commit 3f38567

Browse files
committed
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.
1 parent f5d6043 commit 3f38567

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
# Windows PyPy doesn't seem to work?
3939
- os: windows-latest
4040
python-version: "pypy3"
41-
fail-fast: false
41+
# If one job fails, stop the whole thing.
42+
fail-fast: true
4243

4344
steps:
4445
- name: "Check out the repo"

0 commit comments

Comments
 (0)