Node_Exporter/vendor/github.com/mdlayher/wifi/.travis.yml
Ben Kochie becca1275c
Convert to Go modules (#1178)
* Convert to Go modules

* Update promu config.
* Convert to Go modules.
* Update vendoring.
* Update Makefile.common.
* Update circleci config.
* Use Prometheus release tar for promtool.
* Fixup unpack

* Use temp dir for unpacking tools.
* Use BSD compatible tar command.
* OpenBSD mkdir doesn't support `-v`.

Signed-off-by: Ben Kochie <superq@gmail.com>
2018-11-30 14:01:20 +01:00

17 lines
297 B
YAML

language: go
go:
- 1.x
os:
- linux
sudo: required
before_install:
- go get github.com/golang/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 ./...