From 947a1627d68bacd6f44ca414f7492301595cce28 Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Fri, 25 Oct 2024 21:07:28 -0700 Subject: [PATCH] debug --- .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 f9ccba65..0bc2106a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: echo "peer all all peer" | sudo tee /etc/postgresql/14/main/pg_hba.conf echo "local all postgres peer" | | sudo tee -a /etc/postgresql/14/main/pg_hba.conf echo "host all all 127.0.0.1/32 trust" | sudo tee -a /etc/postgresql/14/main/pg_hba.conf - sudo service postgresql restart + sudo service postgresql start sudo -u postgres createuser --superuser --login $USER createdb $USER psql postgres://$USER@127.0.0.1:5432/$USER -c "SELECT 1" > /dev/null