.PHONY: test

default: test

test:
	go vet && go test
install: test
	go install
