From 23f51595215f6812b97a9bb859634850182ec3d4 Mon Sep 17 00:00:00 2001 From: kirti Date: Sat, 4 Jul 2026 15:21:58 +0000 Subject: [PATCH] ci: unquoted --health-cmd so the Postgres service is wired to the job A quoted '--health-cmd "pg_isready -U iios"' in the folded options scalar splits on spaces, so docker received an invalid healthcheck command; the service never went healthy and the job container couldn't resolve postgres:5432 (P1001). Match go-monorepo's proven unquoted '--health-cmd pg_isready'. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1403d11..210ae55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: POSTGRES_PASSWORD: iios POSTGRES_DB: iios options: >- - --health-cmd "pg_isready -U iios" + --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 10