From a65ca1d6eda80c5c3410cc1e3f757e36660d0294 Mon Sep 17 00:00:00 2001 From: Lacey Sanderson Date: Mon, 19 Aug 2024 17:09:00 -0600 Subject: [PATCH] Wait until postgresql is ready. --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index df30253..b50d131 100644 --- a/action.yml +++ b/action.yml @@ -60,6 +60,7 @@ runs: run: | docker run --publish=80:80 --name=tripaldocker -tid \ --volume=`pwd`:/var/www/drupal/web/modules/contrib/${{ inputs.directory-name }} testing:localdocker + pg_isready -h localhost -p 5432 -t 5 # Install the modules - name: Install our package in Docker if: "${{ inputs.modules != '' }}"