Skip to content

Commit 93114c0

Browse files
authored
Move the continue-on-error under the steps
1 parent d81eda2 commit 93114c0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
15-
include:
16-
- python-version: "3.13"
17-
continue-on-error: true
1815

1916
steps:
2017
- uses: actions/checkout@v4
@@ -42,3 +39,5 @@ jobs:
4239
flags: ${{ matrix.python-version }}
4340
name: Python ${{ matrix.python-version }}
4441
token: ${{ secrets.CODECOV_ORG_TOKEN }}
42+
43+
continue-on-error: ${{ matrix.python-version == '3.13' }}

0 commit comments

Comments
 (0)