File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 77 name : Check
88 strategy :
99 matrix :
10- rust : ["1.38 .0", "stable", "beta", "nightly"]
10+ rust : ["1.42 .0", "stable", "beta", "nightly"]
1111 backend : ["postgres", "sqlite"]
1212 os : [ubuntu-18.04, macos-latest, windows-latest]
1313 runs-on : ${{ matrix.os }}
@@ -58,12 +58,11 @@ jobs:
5858 brew update
5959 brew uninstall --ignore-dependencies libpq
6060 brew install postgres
61- /usr/local/Cellar/postgresql/12.2/bin/initdb --locale=C -E UTF-8 /usr/local/var/postgres
62- /usr/local/opt/postgres/bin/pg_ctl -D /usr/local/var/postgres start
61+ pg_ctl -D /usr/local/var/postgres start
6362 sleep 3
64- /usr/local/opt/postgres/bin/ createuser -s postgres
65- /usr/local/opt/postgres/bin/ createdb wundergraph_test -O postgres
66- /usr/local/opt/postgres/bin/ psql -c "ALTER USER postgres PASSWORD 'postgres';" wundergraph_test
63+ createuser -s postgres
64+ createdb wundergraph_test -O postgres
65+ psql -c "ALTER USER postgres PASSWORD 'postgres';" wundergraph_test
6766
6867 - name : Install sqlite (MacOS)
6968 if : runner.os == 'macOS' && matrix.backend == 'sqlite'
You can’t perform that action at this time.
0 commit comments