Skip to content

Commit 37df1e7

Browse files
committed
Use setup-python
1 parent e0ade6a commit 37df1e7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ jobs:
2222
python-version: ["3.9", "3.10", "3.11", "3.12"]
2323
steps:
2424
- uses: actions/checkout@v4
25-
- name: Setup uv
25+
- name: Install uv
2626
uses: astral-sh/setup-uv@v3
27-
- name: Install Python ${{ matrix.python-version }}
28-
run: uv python install ${{ matrix.python-version }}
27+
- name: Install Python
28+
uses: actions/setup-python@v5
29+
with:
30+
python-version: ${{ matrix.python-version }}
2931
- name: Install libsndfile
3032
if: startsWith(matrix.os, 'ubuntu')
3133
run: |

0 commit comments

Comments
 (0)