diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-31 16:09:12 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-31 16:09:12 -0600 |
| commit | 311603d0c0b04d451e9fb8e5e8335dca8425e2c4 (patch) | |
| tree | f38db8e10c4b55aef21c96c30fc71278c6e3d5c6 /vendor/github.com/xlgmokha/minit/Makefile | |
| parent | ebb003ef2beaeee61104d6b88a342c5c9fa73b51 (diff) | |
Connect to postgresql
Diffstat (limited to 'vendor/github.com/xlgmokha/minit/Makefile')
| -rw-r--r-- | vendor/github.com/xlgmokha/minit/Makefile | 16 |
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 + |
