Skip to content

Commit 4140351

Browse files
committed
Add continue-on-error flag
1 parent 63256c1 commit 4140351

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ jobs:
1515
test:
1616
runs-on: ${{ matrix.os }}
1717
name: ${{ matrix.os }} - ${{ matrix.python }}
18+
continue-on-error: ${{ matrix.experimental }}
1819
strategy:
1920
fail-fast: false
2021
matrix:
2122
# Test all supported versions on Ubuntu:
2223
os: [ubuntu-latest]
2324
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
25+
experimental: [false]
2426
include:
2527
# Handling as the experimental job
2628
- os: ubuntu-latest
@@ -29,14 +31,19 @@ jobs:
2931
# Also test PyPy, macOS, and Windows:
3032
- os: ubuntu-latest
3133
python: pypy-3.9
34+
experimental: false
3235
- os: ubuntu-latest
3336
python: pypy-3.8
37+
experimental: false
3438
- os: ubuntu-latest
3539
python: pypy-3.7
40+
experimental: false
3641
- os: macos-latest
3742
python: "3.10"
43+
experimental: false
3844
- os: windows-latest
3945
python: "3.10"
46+
experimental: false
4047
steps:
4148
- uses: actions/checkout@v2
4249
- name: Set up Python ${{ matrix.python }}

0 commit comments

Comments
 (0)