First commit

This commit is contained in:
2025-05-03 23:49:48 +02:00
commit d1548b6e8a
17 changed files with 1153 additions and 0 deletions

31
.github/workflows/publish.yaml vendored Normal file
View File

@@ -0,0 +1,31 @@
name: Quality Checks
on:
workflow_call:
jobs:
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@v4
- name: "Install uv"
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync
- name: Build
run: uv build
- name: Publish
run: uv publish