summaryrefslogtreecommitdiff
path: root/Makefile
blob: a2c66577d2f0b9614aeb24244b4c3c3219ec891d (plain)
1
2
3
4
5
6
7
8
all:
	go build
run:
	go run main.go
test:
	go test ./... -v
bench:
	go test -run=10 -bench=. ./... -v