16 lines
138 B
Makefile
16 lines
138 B
Makefile
.PHONY: build test fmt tidy lint
|
|
|
|
build:
|
|
go build ./...
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
fmt:
|
|
gofmt -w .
|
|
|
|
tidy:
|
|
go mod tidy
|
|
|
|
lint:
|
|
go vet ./...
|