From 4a34445befcf7f1d0e06935198e14d6c3edafb7f Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 20 Jun 2015 22:04:16 -0400 Subject: [PATCH] add target for running benchmarks --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index d5e850e..2302ee6 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,7 @@ lint: go-test: go test +bench: + go test -bench . .PHONY: lint test