From 890361741301551c7c496b572d478f7a6fdbde99 Mon Sep 17 00:00:00 2001 From: wuriyanto Date: Thu, 31 Aug 2023 00:16:19 +0700 Subject: [PATCH] github actions: supply psql password --- .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 37397bf..c6f0639 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,4 +55,4 @@ jobs: - name: Test run: | - psql -h localhost -U superdevuser -d superdevdb -a -f ./scripts/test.sql \ No newline at end of file + export PGPASSWORD='12345678' psql -h localhost -U superdevuser -d superdevdb -a -f ./scripts/test.sql \ No newline at end of file