Skip to content

Commit 27a99b6

Browse files
committed
Adjust actions
1 parent e482519 commit 27a99b6

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/verify.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
with:
3434
persist-credentials: false
3535
- name: Prepare python
36+
uses: actions/setup-python@v6
37+
with:
38+
python-version: ${DEFAULT_PYTHON}
3639
run: |
3740
pip install uv
3841
uv venv --seed venv
@@ -63,6 +66,9 @@ jobs:
6366
- name: Check out committed code
6467
uses: actions/checkout@v5
6568
- name: Prepare python
69+
uses: actions/setup-python@v6
70+
with:
71+
python-version: ${DEFAULT_PYTHON}
6672
run: |
6773
pip install uv
6874
uv venv --seed venv
@@ -83,11 +89,14 @@ jobs:
8389
- commitcheck
8490
strategy:
8591
matrix:
86-
python-version: ["3.13"]
92+
python-version: ["3.13", "3.14"]
8793
steps:
8894
- name: Check out committed code
8995
uses: actions/checkout@v5
9096
- name: Prepare python
97+
uses: actions/setup-python@v6
98+
with:
99+
python-version: ${{matrix.python-version}}
91100
run: |
92101
pip install uv
93102
uv venv --seed venv
@@ -139,6 +148,9 @@ jobs:
139148
- name: Check out committed code
140149
uses: actions/checkout@v5
141150
- name: Prepare python
151+
uses: actions/setup-python@v6
152+
with:
153+
python-version: ${DEFAULT_PYTHON}
142154
run: |
143155
pip install uv
144156
uv venv --seed venv
@@ -175,6 +187,9 @@ jobs:
175187
- name: Check out committed code
176188
uses: actions/checkout@v5
177189
- name: Prepare python
190+
uses: actions/setup-python@v6
191+
with:
192+
python-version: ${DEFAULT_PYTHON}
178193
run: |
179194
pip install uv
180195
uv venv --seed venv
@@ -216,6 +231,9 @@ jobs:
216231
- name: Check out committed code
217232
uses: actions/checkout@v5
218233
- name: Prepare python
234+
uses: actions/setup-python@v6
235+
with:
236+
python-version: ${DEFAULT_PYTHON}
219237
run: |
220238
pip install uv
221239
uv venv --seed venv

0 commit comments

Comments
 (0)