File tree 1 file changed +4
-3
lines changed 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -102,20 +102,21 @@ jobs:
102
102
- name : Install postgres (MacOS)
103
103
if : matrix.os == 'macos-13' && matrix.backend == 'postgres'
104
104
run : |
105
- initdb -D /usr/local/var/postgres
106
- pg_ctl -D /usr/local/var/postgres start
105
+ brew install postgresql@14
106
+ brew services start postgresql@14
107
107
sleep 3
108
108
createuser -s postgres
109
109
echo "DATABASE_URL=postgres://postgres@localhost/" >> $GITHUB_ENV
110
110
111
111
- name : Install postgres (MacOS M1)
112
112
if : matrix.os == 'macos-14' && matrix.backend == 'postgres'
113
113
run : |
114
- brew install postgresql
114
+ brew install postgresql@14
115
115
brew services start postgresql@14
116
116
sleep 3
117
117
createuser -s postgres
118
118
echo "DATABASE_URL=postgres://postgres@localhost/" >> $GITHUB_ENV
119
+
119
120
- name : Install sqlite (MacOS)
120
121
if : runner.os == 'macOS' && matrix.backend == 'sqlite'
121
122
run : |
You can’t perform that action at this time.
0 commit comments