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 ce1daf6 commit b8f9f31Copy full SHA for b8f9f31
‎.github/workflows/publish.yml
@@ -32,7 +32,7 @@ jobs:
32
33
- name: Run tests and checks
34
run: |
35
- make all
+ uv run make all
36
37
publish:
38
needs: test
@@ -61,8 +61,9 @@ jobs:
61
62
- name: Build package
63
64
+ uv venv
65
uv pip install build
- python -m build
66
+ uv run python -m build
67
68
- name: Publish to PyPI
69
uses: pypa/gh-action-pypi-publish@release/v1
‎.github/workflows/test.yml
@@ -33,11 +33,11 @@ jobs:
- name: Run format checks and typecheck
- make check
+ uv run make check
- name: Run tests with coverage
39
40
- make coverage
+ uv run make coverage
41
42
- name: Upload coverage to Codecov
43
uses: codecov/codecov-action@v5
0 commit comments