Skip to content

feat: Swarm Intelligence Phase 2 — cross-vertical trust propagation, … #29

feat: Swarm Intelligence Phase 2 — cross-vertical trust propagation, …

feat: Swarm Intelligence Phase 2 — cross-vertical trust propagation, … #29

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install ruff
- run: ruff check src/
- run: ruff format --check src/
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -e ".[dev]" 2>/dev/null || pip install -e .
- run: pip install pyright
- run: pyright src/
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e .
- run: pip install pytest pytest-asyncio
- run: pytest tests/ -v