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 f1f1ab9 commit 3445befCopy full SHA for 3445bef
.github/workflows/run-tests.yml
@@ -23,15 +23,19 @@ jobs:
23
- name: Setup uv
24
uses: astral-sh/setup-uv@v3
25
- name: Install Python ${{ matrix.python-version }}
26
- run: uv python install ${{ matrix.python-version }}
+ run: |
27
+ uv python install ${{ matrix.python-version }}
28
+ uv venv
29
+ uv pip install -e ".[dev]"
30
+ source .venv/bin/activate
31
- name: Install libsndfile
32
if: startsWith(matrix.os, 'ubuntu')
33
run: |
34
sudo apt-get install -y libsndfile1
35
- name: Run tests
- run: uv run --extra dev pytest
36
+ run: pytest
37
- name: Check source code format
- run: uv run --extra dev black --check --diff .
38
+ run: black --check --diff .
39
40
test-deb10-i386:
41
runs-on: ubuntu-latest
0 commit comments