Skip to content

docs: position README as third entry in multi-agent codegen trilogy #2

docs: position README as third entry in multi-agent codegen trilogy

docs: position README as third entry in multi-agent codegen trilogy #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-type:
name: Lint & Type
runs-on: ubuntu-latest
env:
ANTHROPIC_API_KEY: sk-ant-dummy
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff check
run: ruff check .
- name: Ruff format check
run: ruff format --check .
- name: Mypy (strict)
run: mypy .
test:
name: Tests & Coverage
runs-on: ubuntu-latest
env:
ANTHROPIC_API_KEY: sk-ant-dummy
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run pytest with coverage
run: |
pytest tests/ -v \
--cov=agents \
--cov=evolution \
--cov=models \
--cov-report=term \
--cov-report=xml
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: coverage-xml
path: coverage.xml
if-no-files-found: warn