👷 Run tests from Python environment (with uv), not from Docker container (#1361)

This commit is contained in:
Sebastián Ramírez
2024-09-23 23:27:21 +02:00
committed by GitHub
parent b3a77946cb
commit 39325ad421
3 changed files with 40 additions and 10 deletions

View File

@@ -0,0 +1,26 @@
name: Test Docker Compose
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
jobs:
test-docker-compose:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- run: docker compose build
- run: docker compose down -v --remove-orphans
- run: docker compose up -d --wait
- name: Test backend is up
run: curl http://localhost:8000/api/v1/utils/health-check
- name: Test frontend is up
run: curl http://localhost:5173
- run: docker compose down -v --remove-orphans