Skip to content

Commit

Permalink
woohoo
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Jan 29, 2024
1 parent 539243c commit 328d9ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/actions/setup-postgres-linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ runs:

- name: Start the postgres service
shell: bash
run: echo "woohoo"
# sudo systemctl start postgresql.service
# pg_isready
# sudo chmod a+x ${{ github.action_path }}/setup_db.sh
# sudo -u postgres bash ${{ github.action_path }}/setup_db.sh
run: |
sudo systemctl start postgresql.service
pg_isready
sudo -u postgres bash ${{ github.action_path }}/setup_db.sh
1 change: 1 addition & 0 deletions .github/actions/setup-postgres-linux/setup_db.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
set -x
echo "woohoo"
env | grep '^PG'

# If you want to run this script for your own postgresql (run with
Expand Down

0 comments on commit 328d9ef

Please sign in to comment.