This repository was archived by the owner on May 19, 2026. It is now read-only.
docs: Phase 1 brief as source of truth; remove Docker, Redis, vmix, A… #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| backend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: "0.11.14" | |
| enable-cache: true | |
| cache-dependency-glob: "backend/uv.lock" | |
| - name: Run backend tests | |
| working-directory: backend | |
| env: | |
| SECRET_KEY: ci-ci-ci-ci-ci-ci-ci-ci-ci-ci-ci-12 | |
| run: uv sync --locked --extra dev && uv run pytest |