From 078c18411be75ab04be5c1eda8803b613b18e370 Mon Sep 17 00:00:00 2001 From: Taro Matsuzawa Date: Wed, 6 Jan 2021 15:57:02 +0900 Subject: [PATCH] WIP: github actions ci: install postgis to ckan_test database --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ea7c1f..6c66ae3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,6 +91,7 @@ jobs: mv test-github-actions.ini subdir # setup spatial table + psql --host=ckan-postgres --username=ckan -d ckan_test --command="CREATE EXTENSION postgis;" psql --host=ckan-postgres --username=ckan -d ckan_test --command="ALTER VIEW geometry_columns OWNER TO ckan_default;" psql --host=ckan-postgres --username=ckan -d ckan_test --command="ALTER TABLE spatial_ref_sys OWNER TO ckan_default;"