Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ jobs:
python-version: "3.10"
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
- uses: oven-sh/setup-bun@v2
- name: Install backend dependencies
run: uv sync
working-directory: backend
- name: Install frontend dependencies
run: bun ci
- name: Generate OpenAPI client
run: bash scripts/generate-client.sh
- name: Check OpenAPI client is up to date
run: git diff --exit-code
- run: docker compose down -v --remove-orphans
- run: docker compose up -d db mailcatcher
- name: Migrate DB
Expand Down
Loading