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 7cffcda commit 7dd5617Copy full SHA for 7dd5617
.github/workflows/run-tests.yml
@@ -10,7 +10,9 @@ on:
10
branches:
11
- main
12
13
-# Set the language, install dependencies, and run the tests
+env:
14
+ UV_SYSTEM_PYTHON: 1
15
+
16
jobs:
17
build:
18
runs-on: ${{ matrix.os }}
@@ -25,16 +27,15 @@ jobs:
25
27
- name: Install Python ${{ matrix.python-version }}
26
28
run: |
29
uv python install ${{ matrix.python-version }}
- uv venv
30
uv pip install -e ".[dev]"
31
- name: Install libsndfile
32
if: startsWith(matrix.os, 'ubuntu')
33
34
sudo apt-get install -y libsndfile1
35
- name: Run tests
- run: uv run pytest
36
+ run: pytest
37
- name: Check source code format
- run: uv run black --check --diff .
38
+ run: black --check --diff .
39
40
test-deb10-i386:
41
runs-on: ubuntu-latest
0 commit comments