12 lines
121 B
Makefile
12 lines
121 B
Makefile
.PHONY: fmt
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
.PHONY: mod
|
|
mod:
|
|
go mod vendor
|
|
go mod tidy
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -v -race ./...
|