18 lines
269 B
YAML
18 lines
269 B
YAML
|
sudo: false
|
||
|
language: go
|
||
|
go:
|
||
|
- "1.8"
|
||
|
- "1.9"
|
||
|
- "1.10"
|
||
|
- "1.11"
|
||
|
- "1.12"
|
||
|
|
||
|
install:
|
||
|
- go get github.com/stretchr/testify
|
||
|
- go get github.com/prometheus/client_golang/prometheus
|
||
|
- go get golang.org/x/net/context
|
||
|
- go get golang.org/x/net/trace
|
||
|
|
||
|
script:
|
||
|
- go test -v ./...
|