Skip to content

docs: surface the v0.3 MCP + CLI story everywhere #12

docs: surface the v0.3 MCP + CLI story everywhere

docs: surface the v0.3 MCP + CLI story everywhere #12

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-groups
- name: Lint with ruff
run: uv run ruff check .
- name: Check formatting
run: uv run ruff format --check .
- name: Run tests
run: uv run pytest -v