From 394ce2b4e3f4fc0e940d75ad2fcd00307c5562b4 Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Fri, 25 Oct 2024 20:52:48 -0700 Subject: [PATCH] Allow postgres connections from local --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef18c7bc..668ff757 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,5 +22,6 @@ jobs: sudo service postgresql start sudo -u postgres createuser --superuser --login $USER createdb $USER + echo "host all all 127.0.0.1/32 trust" >> /etc/postgresql/14/main/pg_hba.conf - name: Test run: cargo nextest run