We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ade6a commit 37df1e7Copy full SHA for 37df1e7
.github/workflows/run-tests.yml
@@ -22,10 +22,12 @@ jobs:
22
python-version: ["3.9", "3.10", "3.11", "3.12"]
23
steps:
24
- uses: actions/checkout@v4
25
- - name: Setup uv
+ - name: Install uv
26
uses: astral-sh/setup-uv@v3
27
- - name: Install Python ${{ matrix.python-version }}
28
- run: uv python install ${{ matrix.python-version }}
+ - name: Install Python
+ uses: actions/setup-python@v5
29
+ with:
30
+ python-version: ${{ matrix.python-version }}
31
- name: Install libsndfile
32
if: startsWith(matrix.os, 'ubuntu')
33
run: |
0 commit comments