Skip to content

Commit 7a4c80e

Browse files
committed
Fix ci (second try)
1 parent 4c7c79d commit 7a4c80e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ jobs:
6868
- name: Install postgres (MacOS)
6969
if: runner.os == 'macOS' && matrix.backend == 'postgres'
7070
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
71+
initdb -D /usr/local/var/postgres
72+
pg_ctl -D /usr/local/var/postgres start
7373
sleep 3
74-
/usr/local/opt/postgres/bin/createuser -s postgres
74+
createuser -s postgres
7575
echo "DATABASE_URL=postgres://postgres@localhost/" >> $GITHUB_ENV
7676
7777
- name: Install mysql (MacOS)

0 commit comments

Comments
 (0)