Makefile

 1all: test install
 2
 3install:
 4	go install
 5
 6lint:
 7	gofmt -l -s -w . && go tool vet -all . && golint
 8
 9test:
10	go test -race -v -coverprofile=coverage.txt -covermode=atomic
11
12bench:
13	go test -run=XXX -bench=. -benchmem