Skip to content

docs: add ADR-003 on reasoning model requirement #6

docs: add ADR-003 on reasoning model requirement

docs: add ADR-003 on reasoning model requirement #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run unit tests
run: pytest tests/unit -v --tb=short
- name: Compile packs
run: python scripts/compile_all.py
- name: Run integration tests (no API key required)
run: pytest tests/integration -v --tb=short --ignore=tests/integration/test_census_api_live.py
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install ruff
run: pip install ruff
- name: Run ruff
run: ruff check src/ tests/