Skip to content

Commit b98232f

Browse files
committed
CI: more debug to get all jobs to run
1 parent 7c89e64 commit b98232f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/notebooks.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,37 @@ on:
99
- main
1010
schedule:
1111
- cron: '0 5 * * 1'
12+
workflow_dispatch:
1213

1314
jobs:
1415
tests:
1516
name: ${{ matrix.os }} ${{ matrix.name }}
1617
runs-on: ${{ matrix.os }}
1718
strategy:
18-
max-parallel: 12
19+
# Don't cancel jobs if one is failing
20+
fail-fast: false
1921
matrix:
20-
os: [Ubuntu-latest, macOS-latest]
2122
include:
2223

2324
- python-version: '3.8'
2425
toxenv: py38-test-oldestdeps
2526
name: with Python 3.8 and oldest versioned dependencies
27+
os: ubuntu-latest
2628

2729
- python-version: '3.9'
2830
toxenv: py39-test
2931
name: with Python 3.9
32+
os: ubuntu-latest
3033

3134
- python-version: '3.10'
3235
toxenv: py310-test
3336
name: with Python 3.10
37+
os: macos-latest
3438

3539
- python-version: '3.11'
3640
toxenv: py311-test-devdeps
3741
name: with Python 3.11 with developer versioned dependencies
42+
os: ubuntu-latest
3843

3944
steps:
4045
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)