Skip to content

Commit a0e13d9

Browse files
authored
Set 3.13 as experimental
1 parent 93114c0 commit a0e13d9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@ env:
88
jobs:
99
test:
1010
runs-on: ubuntu-latest
11+
continue-on-error: ${{ matrix.experimental }}
1112
strategy:
1213
fail-fast: false
1314
matrix:
1415
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
experimental: [false]
17+
include:
18+
- python-version: "3.13"
19+
experimental: true
1520

1621
steps:
1722
- uses: actions/checkout@v4
@@ -39,5 +44,3 @@ jobs:
3944
flags: ${{ matrix.python-version }}
4045
name: Python ${{ matrix.python-version }}
4146
token: ${{ secrets.CODECOV_ORG_TOKEN }}
42-
43-
continue-on-error: ${{ matrix.python-version == '3.13' }}

0 commit comments

Comments
 (0)