feat: board × radar fusion + observer dogfooding (PRD #8) (#9) #14
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: gate | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| gate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| # --all-extras: mypy typechecks the REPL surface, which imports | |
| # prompt_toolkit from the optional [repl] extra. | |
| run: uv sync --all-extras | |
| - name: Run gate | |
| run: make gate |