chore: publish from main

This commit is contained in:
github-actions[bot]
2026-08-21 04:02:11 +00:00
parent ac09ca6b2e
commit 5ea5b6a96b
23 changed files with 1123 additions and 0 deletions
@@ -0,0 +1,21 @@
name: CI
on:
push:
branches: [$default-branch]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e .[dev]
- run: ruff check .
- run: pytest