Files
mostlymatter/vendor/github.com/prometheus/procfs/Makefile
2017-06-21 19:06:17 -07:00

19 строки
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