docs: mark CI/CD pipeline done, add ci-cd.md, fix testing.md reference

Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/db6908f8-a99f-426a-97f3-947d5c02944b

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-30 00:05:16 +00:00
parent 172d6465ab
commit 7955dac8e1
4 changed files with 190 additions and 7 deletions
+11 -6
View File
@@ -140,10 +140,15 @@ isort backend/app
## Continuous Integration
Tests run automatically on every push and PR via GitHub Actions (`.github/workflows/test.yml`).
Tests run automatically on every push and PR via GitHub Actions
(`.github/workflows/ci.yml`). See [CI/CD Pipeline](ci-cd.md) for a full
description of every stage.
The CI workflow:
1. Installs dependencies (Python 3.13)
2. Runs `pytest` with coverage
3. Runs linting checks (Black, isort, Flake8, Pylint)
4. Uploads coverage to Codecov
The pipeline runs in four stages:
1. **Lint** (blocking gate) — Black, isort, Flake8, Pylint
2. **Test**`pytest` with coverage; report uploaded to Codecov
3. **Security** — Bandit static analysis + pip-audit dependency scan
4. **CodeQL** — GitHub's semantic code analysis for Python
5. **Docker** — builds and pushes to `ghcr.io` (main branch only)
6. **GitOps** — updates the preprod Kubernetes manifest (main branch only)