lbcutil/.travis.yml
Dave Collins f3db5cf7e5 Use container-based builds on TravisCI.
Also, import the goclean.sh script directly into this repository and
call it directly instead of using a remote gist.
2015-07-28 03:45:19 -05:00

21 lines
551 B
YAML

language: go
go:
- 1.3.3
- 1.4.2
sudo: false
before_install:
- gotools=golang.org/x/tools
- if [ "$TRAVIS_GO_VERSION" = "go1.3.3" ]; then gotools=code.google.com/p/go.tools; fi
install:
- go get -d -t -v ./...
- go get -v $gotools/cmd/cover
- go get -v $gotools/cmd/vet
- go get -v github.com/bradfitz/goimports
- go get -v github.com/golang/lint/golint
script:
- export PATH=$PATH:$HOME/gopath/bin
- ./goclean.sh
after_success:
- go get -v github.com/mattn/goveralls
- goveralls -coverprofile=profile.cov -service=travis-ci