Skip to content

docs: add root STATUS.md snapshot; close #37 (verified dup of #35) #178

docs: add root STATUS.md snapshot; close #37 (verified dup of #35)

docs: add root STATUS.md snapshot; close #37 (verified dup of #35) #178

Workflow file for this run

name: CI
on:
push:
branches: [main, "feature/**"]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Sync dependencies
run: uv sync --extra dev
- name: Repo-bound contract (LLM Wiki boundary)
run: uv run python scripts/check_repo_bounds.py
- name: Ruff lint
run: uv run ruff check src tests
- name: Ruff format
run: uv run ruff format --check src tests
- name: Pytest (with coverage gate)
run: uv run pytest -q