Skip to content

Commit f771636

Browse files
committed
Simplify Python test workflow by removing matrix strategy
1 parent 32db681 commit f771636

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/python-tests.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,13 @@ on:
1313

1414
jobs:
1515
test:
16-
strategy:
17-
matrix:
18-
version: ["3.14"]
19-
os: [ubuntu-latest]
20-
runs-on: ${{ matrix.os }}
16+
runs-on: ubuntu-latest
2117
steps:
2218
- uses: actions/checkout@v6
23-
- name: Set up Python ${{ matrix.version }}
19+
- name: Set up Python 3.14
2420
uses: actions/setup-python@v6
2521
with:
26-
python-version: "${{ matrix.version }}"
22+
python-version: "3.14"
2723
- name: Install uv
2824
uses: astral-sh/setup-uv@v7
2925
- name: Install dependencies

0 commit comments

Comments
 (0)