added workflows again
Some checks failed
CI / test (push) Failing after 15s

This commit is contained in:
2026-05-19 15:43:01 -05:00
parent 6326622187
commit e47aa0bb77
2 changed files with 107 additions and 0 deletions

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

@@ -0,0 +1,29 @@
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Core with Dev Dependencies
run: |
pip install --upgrade pip
pip install -e .[dev]
- name: Run Quality Checks (Linter)
run: ruff check src/
- name: Execute Test Suite
run: pytest tests/ -v