Skip to content

Commit 1e994a5

Browse files
authored
GitHub Actions: Turn off fail-fast so we can see all failures
GitHub actions are currently failing, so let's examine all errors. `build: strategy: fail-fast: false` * https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#jobsjob_idstrategyfail-fast
1 parent ff12c88 commit 1e994a5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1516

1617
steps:
1718
- uses: actions/checkout@v5
1819
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2021
with:
2122
python-version: ${{ matrix.python-version }}
2223
- name: Install dependencies

0 commit comments

Comments
 (0)