.PHONY: all

fmt:
	go fmt ./...

vet:
	go vet ./...

test:
	go test -v

build: fmt vet test