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

13 lines
98 B
Makefile

.PHONY: all
fmt:
go fmt ./...
vet:
go vet ./...
test:
go test ./... -v
build: fmt vet test