21 lines
193 B
Makefile
21 lines
193 B
Makefile
.PHONY: build test lint fmt vet tidy
|
|
|
|
build:
|
|
go build ./cmd/...
|
|
|
|
test:
|
|
go test -race ./...
|
|
|
|
lint:
|
|
staticcheck ./...
|
|
|
|
fmt:
|
|
gofmt -w .
|
|
goimports -w .
|
|
|
|
vet:
|
|
go vet ./...
|
|
|
|
tidy:
|
|
go mod tidy
|