Skip to content

Commit

Permalink
prepend
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Oct 26, 2024
1 parent 2bc33cb commit aa754a5
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ jobs:
steps:
- name: Setup PostgreSQL
run: |
echo "host all all 127.0.0.1/32 trust" | sudo tee -a /etc/postgresql/14/main/pg_hba.conf
sudo cat /etc/postgresql/14/main/pg_hba.conf
sudo service postgresql start
sudo service postgresql reload
sudo -u postgres psql -c 'SHOW hba_file'
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
sudo service postgresql restart
sudo -u postgres createuser --superuser --login $USER
createdb $USER
psql postgres://[email protected]:5432/$USER -c "SELECT 1" > /dev/null
Expand Down

0 comments on commit aa754a5

Please sign in to comment.