mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-01-06 19:37:46 -08:00
0e77317955
* github.com/ema/qdisc * github.com/mdlayher/genetlink * github.com/mdlayher/wifi Signed-off-by: Ben Kochie <superq@gmail.com>
17 lines
292 B
YAML
17 lines
292 B
YAML
language: go
|
|
go:
|
|
- 1.x
|
|
os:
|
|
- linux
|
|
sudo: required
|
|
before_install:
|
|
- go get golang.org/x/lint/golint
|
|
- go get honnef.co/go/tools/cmd/staticcheck
|
|
- go get -d -t ./...
|
|
script:
|
|
- go build ./...
|
|
- go vet ./...
|
|
- staticcheck ./...
|
|
- ./scripts/golint.sh
|
|
- go test -race -v ./...
|