zangtumb/vendor/github.com/amalfra/maildir/Makefile

13 lines
98 B
Makefile
Raw Normal View History

2020-10-08 22:36:17 +02:00
.PHONY: all
fmt:
go fmt ./...
vet:
go vet ./...
test:
go test ./... -v
build: fmt vet test