Files
karma/vendor/github.com/prometheus/procfs/Makefile
2017-07-02 10:19:02 -07:00

19 lines
294 B
Makefile

ci: fmt lint test
fmt:
! gofmt -l *.go | read nothing
go vet
lint:
go get github.com/golang/lint/golint
golint *.go
test: sysfs/fixtures/.unpacked
go test -v ./...
sysfs/fixtures/.unpacked: sysfs/fixtures.tar.gz
cd sysfs && tar xzf fixtures.tar.gz
touch $@
.PHONY: fmt lint test ci