File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -61,13 +61,13 @@ jobs:
61
61
if : steps.pgml_extension_changed.outputs.PGML_EXTENSION_CHANGED_FILES != '0'
62
62
run : |
63
63
git checkout origin/master
64
- echo "\q" | cargo pgrx run
65
- psql -p 28816 -h localhost -d pgml -P pager -c "DROP EXTENSION IF EXISTS pgml CASCADE;"
66
- psql -p 28816 -h localhost -d pgml -P pager -c "DROP SCHEMA IF EXISTS pgml CASCADE;"
67
- psql -p 28816 -h localhost -d pgml -P pager -c "CREATE EXTENSION pgml;"
64
+ cargo pgrx start
65
+ psql -p 28816 -h localhost -d pgml -P pager -c "DROP EXTENSION IF EXISTS pgml CASCADE; DROP SCHEMA IF EXISTS pgml CASCADE; CREATE EXTENSION pgml;"
66
+ cargo pgrx stop
68
67
git checkout $GITHUB_SHA
69
- echo "\q" | cargo pgrx run
68
+ cargo pgrx start
70
69
psql -p 28816 -h localhost -d pgml -P pager -c "ALTER EXTENSION pgml UPDATE;"
70
+ cargo pgrx stop
71
71
- name : Unit tests
72
72
if : steps.pgml_extension_changed.outputs.PGML_EXTENSION_CHANGED_FILES != '0'
73
73
run : |
You can’t perform that action at this time.
0 commit comments