From 22348e1554ba6113fcd1b7a678dd14dcdc166755 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Mon, 27 Nov 2023 14:55:07 +0100 Subject: [PATCH] Fix ci --- .github/workflows/robot.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/robot.yml b/.github/workflows/robot.yml index 824a73ffd..f93053769 100644 --- a/.github/workflows/robot.yml +++ b/.github/workflows/robot.yml @@ -28,12 +28,13 @@ jobs: - name: Start the service run: | - docker compose up -d back postgres ingress # --wait Wait is not available on gha + docker compose up -d back postgres ingress meilisearch # --wait Wait is not available on gha - name: Perform healthchecks run: | docker compose ps -a - wget --retry-connrefused --retry-on-http-error=502 http://localhost:8901/api/health + docker compose logs + wget --retry-connrefused --retry-on-http-error=502 http://localhost:8901/api/health || (docker compose logs && exit 1) - name: Run robot tests run: |