From d79224753a17d60db2f22a3212d5ef918a1db81d Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Mon, 29 Jan 2024 19:10:27 -0500 Subject: [PATCH] test error message received --- .github/actions/setup-postgres-linux/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-postgres-linux/action.yml b/.github/actions/setup-postgres-linux/action.yml index 15c8ae94..3cb7ce63 100644 --- a/.github/actions/setup-postgres-linux/action.yml +++ b/.github/actions/setup-postgres-linux/action.yml @@ -9,7 +9,7 @@ runs: shell: bash run: | sudo systemctl start postgresql.service - pg_isready + pg_isready -h localhost -p 5432 -u postgres - name: Can I cd "/home/runner/work/dbt-postgres/dbt-postgres"? shell: bash @@ -17,6 +17,7 @@ runs: sudo -u postgres bash -c "pwd" sudo -u postgres bash -c "ls" sudo -u postgres bash -c "cd ." + sudo -u postgres bash -c "pwd" - name: Configure the database shell: bash