mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-20 15:36:07 +01:00
0e77317955
* github.com/ema/qdisc * github.com/mdlayher/genetlink * github.com/mdlayher/wifi Signed-off-by: Ben Kochie <superq@gmail.com>
17 lines
369 B
YAML
17 lines
369 B
YAML
language: go
|
|
go:
|
|
- 1.x
|
|
env:
|
|
- GO111MODULE=on
|
|
os:
|
|
- linux
|
|
sudo: required
|
|
before_install:
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.17.1
|
|
- go get -d ./...
|
|
script:
|
|
- go build -tags=gofuzz ./...
|
|
- go vet ./...
|
|
- golangci-lint run ./...
|
|
- go test -v -race -tags=integration ./...
|