Skip to content

feat(ui): redesign v0.4.0 — toggle fix, visual overhaul, instant demo… #24

feat(ui): redesign v0.4.0 — toggle fix, visual overhaul, instant demo…

feat(ui): redesign v0.4.0 — toggle fix, visual overhaul, instant demo… #24

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