Skip to content

Merge pull request #16 from kengz/compact #4

Merge pull request #16 from kengz/compact

Merge pull request #16 from kengz/compact #4

Workflow file for this run

name: publish
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Publish
env:
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: |
uv build
uv publish