complete/.travis.yml

18 lines
299 B
YAML
Raw Normal View History

2017-05-05 16:38:16 -05:00
language: go
sudo: false
go:
- 1.8
- tip
before_install:
- go get -u -t ./...
2017-05-18 16:21:17 -05:00
- go get -u gopkg.in/alecthomas/gometalinter.v1
- 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 ./...
2017-05-07 11:54:57 -05:00
- ./test.sh
2017-05-05 16:38:16 -05:00
after_success:
- bash <(curl -s https://codecov.io/bash)