Skip to content

fix(errors): treat undecodable bytes as upstream failure, not caller … #32

fix(errors): treat undecodable bytes as upstream failure, not caller …

fix(errors): treat undecodable bytes as upstream failure, not caller … #32

Workflow file for this run

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", "3.14"]
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