aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ettle/strcase/Makefile
blob: ac98b4aa54a214edd835cd18f7cd76dbb666fced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.PHONY: benchmark docs lint test

docs:
	which godoc2ghmd || go get github.com/DevotedHealth/godoc2ghmd
	godoc2ghmd -template .readme.tmpl github.com/ettle/strcase > README.md
	go mod tidy

test:
	go test -cover ./...

lint:
	which golangci-lint || go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.50.1
	golangci-lint run
	golangci-lint run benchmark/*.go
	go mod tidy

benchmark:
	cd benchmark && go test -bench=. -test.benchmem
	go mod tidy