.PHONY: build

default: test build

build:
	go build .

test:
	go test ./...
