From 00d2a0feadc32f0376d60a868b46ee12e9c5ddd3 Mon Sep 17 00:00:00 2001 From: Dai MIKURUBE Date: Wed, 25 Sep 2024 17:57:20 +0900 Subject: [PATCH] Access to PostgreSQL --- .github/workflows/input-postgresql.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/input-postgresql.yml b/.github/workflows/input-postgresql.yml index bac708a..a842512 100644 --- a/.github/workflows/input-postgresql.yml +++ b/.github/workflows/input-postgresql.yml @@ -42,3 +42,8 @@ jobs: - name: List files under the Embulk home directory run: ls -laR "$HOME/.embulk/" + + - name: Access PostgreSQL + run: psql -h localhost -U postgres -d postgres -c "\l" + env: + PGPASSWORD: postgres