.PHONY: all build test fmt vet

all: build vet test

build:
	go build ./...

test:
	go test ./...

fmt:
	go fmt ./...

vet:
	go vet ./...
