Skip to content

Restructure

Restructure #209

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
run: pip install uv
- name: Sync workspace
run: uv sync --all-packages --all-extras
# Tests live in backend/ today; cli/ has no tests yet.
- name: Pytest (backend)
# --no-sync prevents uv run's implicit re-sync from dropping member
# extras (it defaults to no extras and would remove pytest).
run: cd backend && uv run --no-sync pytest
env:
ENVIRONMENT: local
SECRET_KEY: test-secret-key-for-testing-only