Codebase list golang-github-googleapis-gax-go / debian/0.0_git20170902.8c160ca-1 .travis.yml
debian/0.0_git20170902.8c160ca-1

Tree @debian/0.0_git20170902.8c160ca-1 (Download .tar.gz)

.travis.yml @debian/0.0_git20170902.8c160ca-1raw · history · blame

sudo: false
language: go
go:
  - 1.6
  - 1.7
before_install:
  - go get golang.org/x/tools/cmd/cover
  - go get golang.org/x/tools/cmd/goimports
script:
  - gofmt -l .
  - goimports -l .
  - go tool vet .
  - go test -coverprofile=coverage.txt -covermode=atomic
after_success:
  - bash <(curl -s https://codecov.io/bash)