Skip to content

Merge pull request #18 from kengz/refactor #6

Merge pull request #18 from kengz/refactor

Merge pull request #18 from kengz/refactor #6

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