summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/segmentio/analytics-go/Makefile
blob: e896b1b5f073952788620207693fe1853e400770 (plain)
1
2
3
4
5
6
7
8
9
10
vet:
	@godep go vet ./...

build:
	@godep go build

test:
	@godep go test -race -cover ./...

.PHONY: vet build test