summaryrefslogtreecommitdiff
path: root/vendor/github.com/go-playground/form/v4/Makefile
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-07-21 14:22:13 +0000
committerLibravatar GitHub <noreply@github.com>2023-07-21 14:22:13 +0000
commitd53449ccb43d757915d17b0383c62cb5403a3211 (patch)
tree0ac9a2d4245fba6cbbb1207d2d309b9264f34804 /vendor/github.com/go-playground/form/v4/Makefile
parentBump word-wrap from 1.2.3 to 1.2.4 in /web/source (#2001) (diff)
downloadgotosocial-d53449ccb43d757915d17b0383c62cb5403a3211.tar.xz
[chore]: Bump github.com/go-playground/form/v4 from 4.2.0 to 4.2.1 (#1994)
Diffstat (limited to 'vendor/github.com/go-playground/form/v4/Makefile')
-rw-r--r--vendor/github.com/go-playground/form/v4/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/github.com/go-playground/form/v4/Makefile b/vendor/github.com/go-playground/form/v4/Makefile
new file mode 100644
index 000000000..0ff37bce2
--- /dev/null
+++ b/vendor/github.com/go-playground/form/v4/Makefile
@@ -0,0 +1,13 @@
+all: lint test bench
+
+lint:
+ golangci-lint run --timeout 5m
+
+test:
+ go test -covermode=atomic -race ./...
+
+bench:
+ go test -bench=. -benchmem ./...
+
+.PHONY: test lint bench
+.DEFAULT_GOAL := all