1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-18 08:06:20 +00:00
Files
rke/vendor/github.com/prometheus/procfs/Makefile
galal-hussein 5163f2a00f Update vendor
2018-10-18 12:30:00 -07:00

19 lines
298 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.ttar
./ttar -C sysfs -x -f sysfs/fixtures.ttar
touch $@
.PHONY: fmt lint test ci