docs: add root STATUS.md snapshot; close #37 (verified dup of #35) #178
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |