From 3cd2bfba8fe62d2e6be7662366b17b7536b0c38e Mon Sep 17 00:00:00 2001 From: guidojw <35309288+guidojw@users.noreply.github.com> Date: Thu, 12 Oct 2023 01:04:07 +0200 Subject: [PATCH] fix: readd POSTGRES_HOST --- .github/workflows/continuous-integration.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 2cee311a8..b3a7499d1 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -79,6 +79,7 @@ jobs: docker run \ -e POSTGRES_USER=postgres \ -e POSTGRES_PASSWORD=postgres \ + -e POSTGRES_HOST=localhost \ --network=host \ app bin/ci.sh lint || \ EXIT_STATUS=$? @@ -121,5 +122,6 @@ jobs: docker run \ -e POSTGRES_USER=postgres \ -e POSTGRES_PASSWORD=postgres \ + -e POSTGRES_HOST=localhost \ --network=host \ app bin/ci.sh spec