Skip to content

Commit 957f9e0

Browse files
committed
1 parent 767cf6b commit 957f9e0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test-suite.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1818

1919
steps:
20-
- uses: "actions/checkout@v4"
21-
- uses: "actions/setup-python@v5"
20+
- uses: actions/checkout@v5
21+
- uses: actions/setup-python@v6
2222
with:
2323
python-version: "${{ matrix.python-version }}"
2424
allow-prereleases: true
@@ -30,5 +30,6 @@ jobs:
3030
run: "scripts/build"
3131
- name: "Run tests"
3232
run: "scripts/test"
33+
timeout-minutes: 10 # TODO(@cclauss): Remove once Python 3.14 tests are passing.
3334
- name: "Enforce coverage"
3435
run: "scripts/coverage"

0 commit comments

Comments
 (0)