@@ -2,7 +2,7 @@ name: Latest commit
22
33env :
44 CACHE_VERSION : 1
5- DEFAULT_PYTHON : " 3.13 "
5+ DEFAULT_PYTHON : " 3.14 "
66 PRE_COMMIT_HOME : ~/.cache/pre-commit
77 VENV : venv
88
3232 uses : actions/checkout@v5
3333 with :
3434 persist-credentials : false
35+ - name : Use python
36+ uses : actions/setup-python@v6
37+ with :
38+ python-version : ${{ env.DEFAULT_PYTHON }}
3539 - name : Prepare python
3640 run : |
3741 pip install uv
6266 steps :
6367 - name : Check out committed code
6468 uses : actions/checkout@v5
69+ - name : Use python
70+ uses : actions/setup-python@v6
71+ with :
72+ python-version : ${{ env.DEFAULT_PYTHON }}
6573 - name : Prepare python
6674 run : |
6775 pip install uv
@@ -83,10 +91,14 @@ jobs:
8391 - commitcheck
8492 strategy :
8593 matrix :
86- python-version : ["3.13"]
94+ python-version : ["3.13", "3.14" ]
8795 steps :
8896 - name : Check out committed code
8997 uses : actions/checkout@v5
98+ - name : Use python ${{matrix.python-version}}
99+ uses : actions/setup-python@v6
100+ with :
101+ python-version : ${{matrix.python-version}}
90102 - name : Prepare python
91103 run : |
92104 pip install uv
@@ -116,6 +128,10 @@ jobs:
116128 uses : actions/checkout@v5
117129 with :
118130 persist-credentials : false
131+ - name : Use python
132+ uses : actions/setup-python@v6
133+ with :
134+ python-version : ${{ env.DEFAULT_PYTHON }}
119135 - name : Prepare python
120136 run : |
121137 pip install uv
@@ -138,6 +154,10 @@ jobs:
138154 steps :
139155 - name : Check out committed code
140156 uses : actions/checkout@v5
157+ - name : Use python
158+ uses : actions/setup-python@v6
159+ with :
160+ python-version : ${{ env.DEFAULT_PYTHON }}
141161 - name : Prepare python
142162 run : |
143163 pip install uv
@@ -174,6 +194,10 @@ jobs:
174194 steps :
175195 - name : Check out committed code
176196 uses : actions/checkout@v5
197+ - name : Use python
198+ uses : actions/setup-python@v6
199+ with :
200+ python-version : ${{ env.DEFAULT_PYTHON }}
177201 - name : Prepare python
178202 run : |
179203 pip install uv
@@ -215,6 +239,10 @@ jobs:
215239 steps :
216240 - name : Check out committed code
217241 uses : actions/checkout@v5
242+ - name : Use python
243+ uses : actions/setup-python@v6
244+ with :
245+ python-version : ${{ env.DEFAULT_PYTHON }}
218246 - name : Prepare python
219247 run : |
220248 pip install uv
0 commit comments