summaryrefslogtreecommitdiff
path: root/vendor/github.com/xlgmokha/minit/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-31 16:09:12 -0600
committermo khan <mo@mokhan.ca>2025-07-31 16:09:12 -0600
commit311603d0c0b04d451e9fb8e5e8335dca8425e2c4 (patch)
treef38db8e10c4b55aef21c96c30fc71278c6e3d5c6 /vendor/github.com/xlgmokha/minit/Makefile
parentebb003ef2beaeee61104d6b88a342c5c9fa73b51 (diff)
Connect to postgresql
Diffstat (limited to 'vendor/github.com/xlgmokha/minit/Makefile')
-rw-r--r--vendor/github.com/xlgmokha/minit/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/github.com/xlgmokha/minit/Makefile b/vendor/github.com/xlgmokha/minit/Makefile
new file mode 100644
index 0000000..8979cb4
--- /dev/null
+++ b/vendor/github.com/xlgmokha/minit/Makefile
@@ -0,0 +1,16 @@
+SHELL = /bin/sh
+
+clean:
+ @rm -f ./bin/minit
+
+build:
+ @go build -o ./bin/minit main.go
+
+test-unit:
+ @go test ./...
+
+test-integration: build
+ @./bin/minit -h
+
+test: test-unit test-integration
+