Skip to content

fix: OpenRouter + DeepSeek V3.2 as primary LLM, CSV/Metrics layout ov… #4

fix: OpenRouter + DeepSeek V3.2 as primary LLM, CSV/Metrics layout ov…

fix: OpenRouter + DeepSeek V3.2 as primary LLM, CSV/Metrics layout ov… #4

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.12'
- run: pip install -r backend/requirements.txt
- run: cd backend && python -m pytest tests/ -v --tb=short
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 backend/
- run: ruff format --check backend/