Skip to content

docs: add screenshots for live demo, HITL gate and completed run #32

docs: add screenshots for live demo, HITL gate and completed run

docs: add screenshots for live demo, HITL gate and completed run #32

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r apps/api/requirements.txt
pip install pytest pytest-cov ruff black mypy
- name: Lint
run: |
ruff check . || true
black --check . || true
- name: Type check
run: mypy apps/api/packages --ignore-missing-imports || true
- name: Test
run: PYTHONPATH=. pytest -q --tb=short
- name: Eval gate
run: PYTHONPATH=. python scripts/run_evals.py