Skip to content

Commit 2adcd75

Browse files
committed
incorporate feedback
1 parent 9d10f35 commit 2adcd75

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@ on: [push, pull_request]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8+
continue-on-error: ${{ matrix.experimental }} # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error
89
strategy:
910
matrix:
1011
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-alpha.4, pypy3]
12+
experimental: [false]
13+
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
14+
include:
15+
- python-version: 3.10.0-alpha.7 # Newest: https://github.com/actions/python-versions/blob/main/versions-manifest.json
16+
os: ubuntu-latest
17+
experimental: true
1218
steps:
1319
- uses: actions/checkout@v2
1420
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)