Skip to content

Commit 9825b4a

Browse files
committed
Use uv pip
1 parent 0556a67 commit 9825b4a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ jobs:
2828
run: |
2929
sudo apt-get install -y libsndfile1
3030
- name: Install dependencies
31-
run: uv sync --all-extras
31+
run: |
32+
uv venv
33+
source .venv/bin/activate
34+
uv pip install ".[dev]"
3235
- name: Run tests
33-
run: uv run pytest
36+
run: pytest
3437
- name: Check source code format
35-
run: uv run black --check --diff .
38+
run: black --check --diff .
3639

3740
test-deb10-i386:
3841
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)