v0.4: Durable local control plane — PostgreSQL schema, SQLite repo, drift detector, and CLI #31
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, pull_request] | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v6 | |
| with: {python-version: '3.12'} | |
| - run: uv sync --all-extras --locked | |
| - run: uv run pytest | |
| - run: uv run ruff check . | |
| - run: uv run ruff format --check . | |
| - run: uv run mypy | |
| - run: uv build | |
| - run: uv run netsovereign validate examples/minimal/world.yaml |