From 3e5d6370eaa45255b56cbece8d635b9b212e1d3c Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Wed, 5 Mar 2025 12:17:09 +0100 Subject: [PATCH] Postgres on GitHub: attempt w/ explict username/pw combo (WIP, attempt 2) --- .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 4c769a9..804e0d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: if: matrix.db == 'postgres' run: | sudo systemctl start postgresql.service - sudo -u postgres -c "CREATE ROLE bugsink PASSWORD 'bugsink' NOSUPERUSER CREATEDB CREATEROLE INHERIT LOGIN;" postgres + sudo -u postgres psql -c "CREATE ROLE bugsink PASSWORD 'bugsink' NOSUPERUSER CREATEDB CREATEROLE INHERIT LOGIN;" postgres - name: Install build run: | python -m pip install --upgrade pip