ci(deps): bump astral-sh/setup-uv from 4 to 7 #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Package | ||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| pull_request: | ||
| branches: [ main ] | ||
| jobs: | ||
| test: | ||
| uses: ./.github/workflows/ci.yml | ||
|
Check failure on line 12 in .github/workflows/release.yml
|
||
| build-and-publish: | ||
| needs: test | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v7 | ||
| with: | ||
| enable-cache: true | ||
| cache-dependency-glob: "pyproject.toml" | ||
| - name: Install build dependencies | ||
| run: | | ||
| uv pip install build twine | ||
| - name: Build package | ||
| run: | | ||
| uv run python -m build | ||
| - name: Check package | ||
| run: | | ||
| uv run twine check dist/* | ||