.travis.yml 511 B

12345678910111213141516171819202122232425
  1. ## Copyright 2014 Alvaro J. Genial. All rights reserved.
  2. ## Use of this source code is governed by a BSD-style
  3. ## license that can be found in the LICENSE file.
  4. language: go
  5. go:
  6. - tip
  7. - 1.6
  8. - 1.5
  9. - 1.4
  10. - 1.3
  11. # 1.2
  12. before_install:
  13. # - go get -v golang.org/x/tools/cmd/cover
  14. # - go get -v golang.org/x/tools/cmd/vet
  15. # - go get -v golang.org/x/lint/golint
  16. - export PATH=$PATH:/home/travis/gopath/bin
  17. script:
  18. - go build -v ./...
  19. - go test -v -cover ./...
  20. - go vet ./...
  21. # - golint .