push
Some checks failed
CI / test (push) Failing after 1s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-04 03:43:41 +02:00
parent 26c043863e
commit 17fd96680b
15 changed files with 956 additions and 2 deletions

32
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,32 @@
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install package and dev dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Lint
run: ruff check .
- name: Type-check
run: mypy src
- name: Test
run: pytest