Skip to content

feat: 0.3.3 — MCP stdio, /sse + /mcp transports, Voyage embedder, README TM #64

feat: 0.3.3 — MCP stdio, /sse + /mcp transports, Voyage embedder, README TM

feat: 0.3.3 — MCP stdio, /sse + /mcp transports, Voyage embedder, README TM #64

Workflow file for this run

# @wbx-modified copilot-a3f7·MTN | 2026-04-23 | Wk2: CI pipeline (lint + tests)
name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check src tests
- name: Type check (mypy)
run: mypy src
continue-on-error: true # tighten once core is fully typed
- name: Test (pytest)
run: pytest -q --tb=short