Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: Build with Docker Compose
run: |
docker-compose build
docker compose build

- name: Verify builds completed
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Test health endpoint readiness
run: |
# Start services in background
docker-compose up -d
docker compose up -d

# Wait for services to be ready (max 5 minutes)
timeout 300 bash -c 'until curl -f http://localhost:8000/memoryalpha/health > /dev/null 2>&1; do sleep 5; echo "Waiting for API..."; done'
Expand Down Expand Up @@ -71,5 +71,5 @@ jobs:
- name: Cleanup
if: always()
run: |
docker-compose down -v
docker compose down -v
docker system prune -f
6 changes: 3 additions & 3 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Build with Docker Compose
run: |
docker-compose build
docker compose build

- name: Verify builds completed
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Test health endpoint readiness
run: |
# Start services in background
docker-compose up -d
docker compose up -d

# Wait for services to be ready (max 5 minutes)
timeout 300 bash -c 'until curl -f http://localhost:8000/memoryalpha/health > /dev/null 2>&1; do sleep 5; echo "Waiting for API..."; done'
Expand All @@ -54,5 +54,5 @@ jobs:
- name: Cleanup
if: always()
run: |
docker-compose down -v
docker compose down -v
docker system prune -f