.PHONY: test build clean

test:
	go test ./... -v

build:
	go build ./...

clean:
	go clean ./...
