Skip to content

Feat/agentic intelligence harness #10

Feat/agentic intelligence harness

Feat/agentic intelligence harness #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: lint · types · tests (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Sync dependencies (all extras + dev)
run: uv sync --all-extras --python ${{ matrix.python-version }}
- name: Ruff (lint + import order)
run: uv run ruff check src tests eval
- name: Mypy (strict)
run: uv run mypy
- name: Pytest
run: uv run pytest -q