complete/.travis.yml

20 lines
334 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:
- go get -u -t ./...
- go get -u gopkg.in/alecthomas/gometalinter.v2
- gometalinter.v2 --install
2017-05-05 16:38:16 -05:00
script:
- gometalinter.v2 --config metalinter.json ./...
- GO111MODULE=on ./test.sh
2017-05-05 16:38:16 -05:00
after_success:
- bash <(curl -s https://codecov.io/bash)