We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbe7a46 commit 2a0bf81Copy full SHA for 2a0bf81
.github/workflows/release.yml
@@ -18,11 +18,9 @@ jobs:
18
uses: actions/setup-python@v5
19
with:
20
python-version: "3.x"
21
- - name: Install pypa/build
22
- run:
23
- python3 -m pip install build --user
+ - uses: astral-sh/setup-uv@v5
24
- name: Build a binary wheel and a source tarball
25
- run: python3 -m build
+ run: uv build
26
- name: Store the distribution packages
27
uses: actions/upload-artifact@v4
28
.github/workflows/test.yml
@@ -34,7 +34,8 @@ jobs:
34
- uses: actions/setup-python@v5
35
36
python-version: ${{ matrix.python-version }}
37
- - run: python -m pip install tox
38
+ - run: uv pip install --system tox tox-uv
39
- run: tox -f py$(echo ${{ matrix.python-version }} | tr -d .)
40
- uses: codecov/codecov-action@v4
41
0 commit comments