Skip to content

Commit d34f0c1

Browse files
committed
Enable fail-fast option for workflows that run with multiple python versions
1 parent 2da26f6 commit d34f0c1

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.github/workflows/linux-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010

1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: true
1314
matrix:
1415
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1516

.github/workflows/macos-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111

1212
runs-on: macos-latest
1313
strategy:
14+
fail-fast: true
1415
matrix:
1516
python-version: ['3.10', '3.14']
1617

.github/workflows/windows-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111

1212
runs-on: windows-latest
1313
strategy:
14+
fail-fast: true
1415
matrix:
1516
python-version: ['3.10', '3.14']
1617

0 commit comments

Comments
 (0)