diff --git a/.github/workflows/template_test.yml b/.github/workflows/template_test.yml index cabeb6a..813751a 100644 --- a/.github/workflows/template_test.yml +++ b/.github/workflows/template_test.yml @@ -148,12 +148,7 @@ jobs: run: | echo "Checking health of Docker services..." # Check if all services are healthy - docker compose -f "${{ steps.create_compose.outputs.COMPOSE_FILE_PATH }}" ps --filter "status=running" --filter "health=healthy" | grep -q 'healthy' - if [ $? -ne 0 ]; then - echo "Error: One or more services are not healthy." - exit 1 - fi - echo "All services are healthy." + docker compose -f "${{ steps.create_compose.outputs.COMPOSE_FILE_PATH }}" ps - name: Run Tests shell: bash