Skip to content

Commit c39250a

Browse files
committed
Show python version in GA
1 parent cbeb4fb commit c39250a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/on-push.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
unit-tests:
3232
name: unit-tests
3333
runs-on: ubuntu-latest
34+
strategy:
35+
matrix:
36+
python-version:
37+
- "3.14"
38+
3439
steps:
3540
- uses: actions/checkout@v6
3641
- name: Install uv and set the python version
@@ -51,7 +56,7 @@ jobs:
5156
- name: Install uv and set the python version
5257
uses: astral-sh/setup-uv@v7
5358
with:
54-
python-version: "3.14"
59+
python-version: ${{ matrix.python-version }}
5560
- name: Run code quality checks
5661
run: |
5762
make type-check

0 commit comments

Comments
 (0)