We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d8da8e commit b334e95Copy full SHA for b334e95
.github/workflows/ezsql-macos.yml
@@ -43,7 +43,11 @@ jobs:
43
mysql -u root -e "CREATE USER ez_test@localhost IDENTIFIED BY 'ezTest'; GRANT ALL ON ez_test.* TO ez_test@localhost; FLUSH PRIVILEGES;"
44
- name: Brew Start PostgreSql
45
run: |
46
- brew services start postgresql
+ rm /usr/local/var/postgres/postmaster.pid
47
+ sudo mkdir /var/pgsql_socket/
48
+ sudo ln -s /private/tmp/.s.PGSQL.5432 /var/pgsql_socket/
49
+ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
50
+ brew services restart postgresql
51
- name: Setup PostgreSql Database
52
53
psql -U postgres --command="CREATE USER ez_test PASSWORD 'ezTest'" --command="\du"
0 commit comments