summaryrefslogtreecommitdiff
path: root/vendor/github.com/go-playground/form/v4/Makefile
blob: 07dbdc029b1a55adb06981567d10692f3c161375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: lint test bench

lint:
	golangci-lint run --timeout 5m

test:
	go test -covermode=atomic -race ./...

bench:
	go test -run=NONE -bench=. -benchmem ./...

.PHONY: test lint bench
.DEFAULT_GOAL := all