Add CI workflow and project runbook documentation
Some checks failed
CI / test (push) Failing after 2m52s
CI / test (pull_request) Failing after 2m32s

This commit is contained in:
Codex_B
2026-02-28 11:53:09 +00:00
parent 8970f4d8de
commit 938ff5b0d2
3 changed files with 89 additions and 0 deletions

20
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- name: Build
run: docker compose build
- name: Pytest
run: docker compose run --rm web pytest
- name: Ruff
run: docker compose run --rm web ruff check .
- name: Mypy
run: docker compose run --rm web mypy apps config