lbcd/.travis.yml
John C. Vernaleo 1e38d7fd4b Switch to gometalint in goclean
This switches `goclean` to use `gometalint` instead of running each checking tool one at a time.  The `gometalint` tool runs them concurrently.

More importantly it will allow us to easily add additional linters as desired.
2016-11-02 17:36:32 -05:00

16 lines
329 B
YAML

language: go
go:
- 1.6.3
- 1.7.3
sudo: false
install:
- go get -v github.com/Masterminds/glide
- glide install
- go install . ./cmd/...
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.com/alecthomas/gometalinter
- gometalinter --install
script:
- export PATH=$PATH:$HOME/gopath/bin
- ./goclean.sh