Skip to content

ci(deps): bump astral-sh/setup-uv from 4 to 7 #18

ci(deps): bump astral-sh/setup-uv from 4 to 7

ci(deps): bump astral-sh/setup-uv from 4 to 7 #18

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/ci.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
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/*