Skip to content

Commit db02cc8

Browse files
committed
try without any lists
run failed. Didn't get out of the gate. Try making true a bollean always despite https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast example of: jobs: test: runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: true matrix: version: [6, 7, 8] experimental: [false] include: - version: 9 experimental: true as error annotation from github is: Error when evaluating 'continue-on-error' for job 'test'. .github/workflows/ci-test.yml (Line: 37, Col: 24): A sequence was not expected [skip travis]
1 parent a0f8705 commit db02cc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ jobs:
6161
os: [ubuntu-latest, ubuntu-20.04]
6262

6363
# if the ones above fail. fail the build
64-
experimental: [false]
64+
experimental: false
6565

6666
include:
6767
# example: if 3.12 fails the jobs still succeeds
6868
- python-version: 3.12
6969
os: ubuntu-22.04
70-
experimental: [true]
70+
experimental: true
7171

7272
# 3.6 not available on new 22.04 runners, so run on 20.04 ubuntu
7373
- python-version: 3.6

0 commit comments

Comments
 (0)