From d3c9b7eae10a75669511f7ff8137ada5d75785b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Wed, 12 Jun 2024 23:30:42 +0200 Subject: [PATCH] Configure postgres to accept all connections without password for testing --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3dc5de95..d154e3b1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -59,6 +59,7 @@ jobs: - name: Start PostgreSQL run: | + sudo "echo 'host all all" >> /etc/postgresql/16/main/pg_hba.conf" sudo systemctl start postgresql.service sudo -u postgres psql -c "ALTER USER postgres PASSWORD 'postgres';" if: matrix.db-type == 'postgres'