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 f101f5e commit 0ddfc02Copy full SHA for 0ddfc02
1 file changed
.github/workflows/main.yml
@@ -46,28 +46,13 @@ jobs:
46
- uses: codecov/codecov-action@v4
47
build:
48
needs: test
49
- strategy:
50
- fail-fast: false
51
- matrix:
52
- runs-on:
53
- - ubuntu-latest
54
- - macos-latest
55
- - windows-latest
56
- runs-on: ${{ matrix.runs-on }}
+ runs-on: ubuntu-latest
57
steps:
58
- uses: actions/checkout@v4
59
- - uses: actions/setup-python@v5
60
- with:
61
- python-version: ${{ env.python-version }}
62
- cache: ${{ env.cache }}
63
- cache-dependency-path: |-
64
- requirements/dev.txt
65
- - name: Install dependencies
66
- run: |
67
- pip install build
+ - uses: astral-sh/setup-uv@v6
68
- name: Build
69
run: |
70
- python -m build
+ uv build
71
- uses: pypa/gh-action-pypi-publish@release/v1
72
if: runner.os == 'Linux' && startsWith(github.ref, 'refs/tags/')
73
with:
0 commit comments