From 53347b0e80219f94840a1ec612fd28a640725f41 Mon Sep 17 00:00:00 2001 From: jordi fita mas Date: Sat, 22 Jul 2023 23:56:16 +0200 Subject: [PATCH] Add Makefile to deploy with Sqitch and test with pg_prove This is mainly intended for CI scripts, when building the distribution package. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4c55ad7 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +test-deploy: + sqitch deploy --db-name $(PGDATABASE) + pg_prove test/* + +.PHONY: test-db