transfer.sh/vendor/github.com/google/martian/.travis.yml

16 lines
253 B
YAML
Raw Normal View History

2019-03-17 20:19:56 +01:00
# Allow Travis to use container based infrastructure
sudo: false
language: go
go:
- 1.9.x
- 1.10.x
install:
- go get -u golang.org/x/net/websocket
- go get -u github.com/golang/lint/golint
script:
- golint ./...
- go test -v ./... --race