Phase 20.1: finish integration de-masking; 9 shipped bugs found and fixed #14
Workflow file for this run
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: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| test: | |
| name: Test (Python ${{ matrix.python-version }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv sync --locked --dev | |
| - name: Lint (ruff) | |
| run: uv run ruff check src/ tests/ | |
| - name: Type check (pyright) | |
| run: uv run pyright | |
| - name: Run unit tests with coverage | |
| run: uv run pytest --cov=src/mcp_canada | |
| - name: Check catalog freshness | |
| run: uv run python scripts/generate_catalog.py --check |