docs+eval: confirm v11 81.0% saturation + portfolio video #17
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] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| version: "0.8.23" | |
| - name: Set up Python | |
| run: uv python install 3.13 | |
| - name: Sync dependencies | |
| run: uv sync --extra dev | |
| - name: Ruff check | |
| run: uv run ruff check src tests scripts app | |
| - name: Ruff format check | |
| run: uv run ruff format --check src tests scripts app | |
| - name: Mypy strict | |
| run: uv run mypy src | |
| - name: Pytest | |
| run: uv run pytest --cov=src/nl_sql --cov-report=term-missing |