We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 433e5cc commit 6662b60Copy full SHA for 6662b60
1 file changed
.github/workflows/test.yml
@@ -14,9 +14,14 @@ on:
14
jobs:
15
build:
16
runs-on: ubuntu-latest
17
+ continue-on-error: ${{ matrix.allow-failure }}
18
strategy:
19
matrix:
- python-version: ['3.7', '3.8', '3.9', '3.10']
20
+ python-version: [3.7, 3.8, 3.9]
21
+ allow-failure: [false]
22
+ include:
23
+ - python-version: 3.10.0-rc.2
24
+ allow-failure: true
25
26
steps:
27
- uses: actions/checkout@v2
0 commit comments