aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/go.jolheiser.com/hcaptcha/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/go.jolheiser.com/hcaptcha/Makefile')
-rw-r--r--vendor/go.jolheiser.com/hcaptcha/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/go.jolheiser.com/hcaptcha/Makefile b/vendor/go.jolheiser.com/hcaptcha/Makefile
new file mode 100644
index 0000000000..5b4272f3ae
--- /dev/null
+++ b/vendor/go.jolheiser.com/hcaptcha/Makefile
@@ -0,0 +1,13 @@
+GO ?= go
+
+.PHONY: fmt
+fmt:
+ $(GO) fmt ./...
+
+.PHONY: test
+test:
+ $(GO) test -race ./...
+
+.PHONY: vet
+vet:
+ $(GO) vet ./... \ No newline at end of file