complete/.travis.yml

20 lines
364 B
YAML
Raw Normal View History

2017-05-05 16:38:16 -05:00
language: go
sudo: false
go:
- 1.11
- 1.10.x
2017-11-04 03:57:04 -05:00
- 1.9
2017-05-05 16:38:16 -05:00
- 1.8
before_install:
- GO111MODULE=on go get -u -t ./...
- GO111MODULE=on go get -u gopkg.in/alecthomas/gometalinter.v1
2017-05-18 16:21:17 -05:00
- gometalinter.v1 --install
2017-05-05 16:38:16 -05:00
script:
2017-05-18 16:21:17 -05:00
- gometalinter.v1 --config metalinter.json ./...
- GO111MODULE=on ./test.sh
2017-05-05 16:38:16 -05:00
after_success:
- bash <(curl -s https://codecov.io/bash)