Skip to content
This repository was archived by the owner on May 19, 2026. It is now read-only.

Add optional Docker Compose dev stack (#18) #16

Add optional Docker Compose dev stack (#18)

Add optional Docker Compose dev stack (#18) #16

Workflow file for this run

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