Skip to content

Commit c7eddce

Browse files
committed
Add Docker Compose verification step to CI workflow
- Verify what Docker Compose version is available in GitHub Actions - This will help debug if docker compose v2 is actually present
1 parent fb156af commit c7eddce

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ jobs:
6969
- name: Build Docker image for testing
7070
run: docker build -t mcp-front:test .
7171

72+
- name: Verify Docker Compose
73+
run: |
74+
docker --version
75+
docker compose version || echo "Docker Compose v2 not available"
76+
which docker-compose || echo "docker-compose command not found"
77+
7278
- name: Run integration tests
7379
env:
7480
GOOGLE_CLIENT_ID: test-client-id

0 commit comments

Comments
 (0)