Skip to content

fix: build

fix: build #23

Workflow file for this run

name: "Build"
on:
push:
tags: "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.12"
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest tests
- name: Build wheels
run: poetry build
- name: Publish wheels
run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} && poetry publish