Skip to content

Commit 80d9526

Browse files
committed
Simplify continue-on-error config
1 parent f908e34 commit 80d9526

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/main.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,22 @@ jobs:
1313
test:
1414
runs-on: ${{ matrix.os }}
1515
name: ${{ matrix.os }} - ${{ matrix.python }}
16-
continue-on-error: ${{ matrix.experimental }}
1716
strategy:
1817
fail-fast: false
1918
matrix:
2019
# Test all supported versions on Ubuntu:
2120
os: [ubuntu-latest]
2221
python: [pypy3.7, pypy3.8, pypy3.9, "3.7", "3.8", "3.9", "3.10", 3.11-dev]
23-
experimental: [false]
2422
include:
2523
# Also test macOS and Windows:
2624
- os: macos-latest
2725
python: "3.10"
28-
experimental: false
2926
- os: windows-latest
3027
python: "3.10"
31-
experimental: false
3228
# Allow 3.12-dev to fail pending https://github.com/python-greenlet/greenlet/issues/323
3329
- os: ubuntu-latest
3430
python: 3.12-dev
35-
experimental: true
31+
continue-on-error: true
3632
steps:
3733
- uses: actions/checkout@v3
3834
- name: Set up Python ${{ matrix.python }}

0 commit comments

Comments
 (0)