Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Oct 26, 2024
1 parent aa754a5 commit 35ca1fc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ jobs:
steps:
- name: Setup PostgreSQL
run: |
echo "host all all 127.0.0.1/32 trust" | sudo tee /etc/postgresql/14/main/pg_hba.conf
echo "peer all all peer" | sudo tee -a /etc/postgresql/14/main/pg_hba.conf
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 -u postgres createuser --superuser --login $USER
createdb $USER
Expand Down

0 comments on commit 35ca1fc

Please sign in to comment.