craban/Makefile

13 lines
121 B
Makefile
Raw Normal View History

2021-09-11 19:50:34 +01:00
.PHONY: fmt
fmt:
go fmt ./...
.PHONY: mod
mod:
go mod vendor
go mod tidy
.PHONY: test
test:
go test -v -race ./...