Skip to content

Commit 74470b7

Browse files
committed
Run tests on Python 3.12 only
1 parent 4a25091 commit 74470b7

2 files changed

Lines changed: 4 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,8 @@ env:
1414

1515
jobs:
1616
test:
17-
name: Tests (Python ${{ matrix.python-version }})
17+
name: Tests
1818
runs-on: ubuntu-latest
19-
strategy:
20-
fail-fast: false
21-
matrix:
22-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2319

2420
steps:
2521
- name: Check out repository
@@ -28,7 +24,7 @@ jobs:
2824
- name: Set up Python
2925
uses: actions/setup-python@v5
3026
with:
31-
python-version: ${{ matrix.python-version }}
27+
python-version: "3.12"
3228

3329
- name: Set up uv
3430
uses: astral-sh/setup-uv@v5

.github/workflows/test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,17 @@ on:
1111
jobs:
1212
run_tests:
1313
runs-on: ubuntu-latest
14-
strategy:
15-
fail-fast: false
16-
matrix:
17-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1814
steps:
1915
- uses: actions/checkout@v4
2016
with:
2117
fetch-depth: 0
2218
fetch-tags: true
2319
- name: Set up V
2420
uses: vlang/setup-v@v1
25-
- name: Set up Python ${{ matrix.python-version }}
21+
- name: Set up Python
2622
uses: actions/setup-python@v5
2723
with:
28-
python-version: ${{ matrix.python-version }}
24+
python-version: "3.12"
2925
- name: Cache pip dependencies
3026
uses: actions/cache@v3
3127
with:

0 commit comments

Comments
 (0)