Skip to content

Commit

Permalink
GH Actions: Set fail-fast to false
Browse files Browse the repository at this point in the history
With fail-fast: false, all jobs will be run even if one fails.
This lets me analyze the individual failures.
  • Loading branch information
encukou committed Oct 15, 2021
1 parent 86027c8 commit 5f2faa6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
py27-cpp, py35-cpp, py36-cpp, py37-cpp, py38-cpp, py39-cpp, py310-cpp,
]

# Old Python versions tend to have their own problems, so the CI
# isn't green all the time :(
# With this flag, GHA will show all issues so they can be analyzed.
fail-fast: false

# Use GitHub's Linux Docker host
runs-on: ubuntu-latest

Expand Down

0 comments on commit 5f2faa6

Please sign in to comment.