mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-19 23:16:08 +01:00
12 lines
186 B
Makefile
12 lines
186 B
Makefile
|
build:
|
||
|
go fmt
|
||
|
go build
|
||
|
go vet
|
||
|
staticcheck
|
||
|
#golint -set_exit_status
|
||
|
go test -v -race -tags=integration
|
||
|
|
||
|
cover:
|
||
|
go test -coverprofile=coverage.out
|
||
|
go tool cover -html=coverage.out
|