We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5136bba commit c82d691Copy full SHA for c82d691
1 file changed
.github/workflows/test.yml
@@ -29,7 +29,7 @@ jobs:
29
- name: Install dependencies
30
run: uv sync --all-extras
31
- name: Test
32
- run: python tests/runtests.py
+ run: uv run python tests/runtests.py
33
- name: Build
34
run: uv build
35
@@ -41,8 +41,10 @@ jobs:
41
- uses: actions/setup-python@v5
42
- uses: astral-sh/setup-uv@v6
43
44
- run: uv sync --all-extras
+ run: uv sync --all-extras --python=python3.7
45
46
- run: python3.7 tests/runtests.py
+ run: |
47
+ uv run python tests/runtests.py
48
+ uv run python -V
49
50
run: uv build --python=python3.7
0 commit comments