Skip to content

Commit 6a11a1d

Browse files
committed
Disable fail-fast in Github Actions configuration
By default, Github Actions has the fail-fast option enabled, which means that the first job to fail in a matrix causes the whole matrix to be immediately canceled. This makes it impossible to identify when a bug causing a job failure is specific to certain versions of Python. In this commit I'm setting the option to false so that each job will run to completion even if one fails.
1 parent 8cb64d9 commit 6a11a1d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
# Not all Python versions are avalaible for linux AND x64
1313
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
1414
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
15+
fail-fast: false
1516

1617
steps:
1718
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)