craban/Makefile
Miguel de la Cruz 48b34bca9d Initial commit
2021-09-11 21:04:27 +02:00

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 ./...