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 4c7c79d commit 7a4c80eCopy full SHA for 7a4c80e
.github/workflows/ci.yml
@@ -68,10 +68,10 @@ jobs:
68
- name: Install postgres (MacOS)
69
if: runner.os == 'macOS' && matrix.backend == 'postgres'
70
run: |
71
- /usr/local/opt/postgres/bin/initdb -D /usr/local/var/postgres
72
- /usr/local/opt/postgres/bin/pg_ctl -D /usr/local/var/postgres start
+ initdb -D /usr/local/var/postgres
+ pg_ctl -D /usr/local/var/postgres start
73
sleep 3
74
- /usr/local/opt/postgres/bin/createuser -s postgres
+ createuser -s postgres
75
echo "DATABASE_URL=postgres://postgres@localhost/" >> $GITHUB_ENV
76
77
- name: Install mysql (MacOS)
0 commit comments