.PHONY: all test build bench

all: test build

test:
	go test

build:
	go build

bench:
	go test -bench .
