File tree 1 file changed +5
-10
lines changed 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -19,22 +19,17 @@ jobs:
19
19
os : [windows-latest, ubuntu-latest, macos-latest]
20
20
python-version : ["3.8", "3.9", "3.10", "3.11"]
21
21
steps :
22
- - uses : actions/checkout@v3
23
- - name : Set up Python ${{ matrix.python-version }}
24
- uses : actions/setup-python@v4
25
- with :
26
- python-version : ${{ matrix.python-version }}
27
- - name : Install uv
22
+ - uses : actions/checkout@v4
23
+ - name : Setup uv
28
24
uses : astral-sh/setup-uv@v3
29
- - name : Install dependencies
30
- run : |
31
- uv pip install --system ".[dev]"
25
+ - name : Install Python ${{ matrix.python-version }}
26
+ run : uv python install ${{ matrix.python-version }}
32
27
- name : Install libsndfile
33
28
if : startsWith(matrix.os, 'ubuntu')
34
29
run : |
35
30
sudo apt-get install -y libsndfile1
36
31
- name : Run tests
37
- run : pytest
32
+ run : uv run --extra dev pytest
38
33
- name : Check source code format
39
34
run : black --check --diff .
40
35
You can’t perform that action at this time.
0 commit comments