Codebase list golang-github-zenazn-goji / debian/1.0+git20170812.c05078c-3 .travis.yml
debian/1.0+git20170812.c05078c-3

Tree @debian/1.0+git20170812.c05078c-3 (Download .tar.gz)

.travis.yml @debian/1.0+git20170812.c05078c-3raw · history · blame

language: go

matrix:
  include:
    - go: 1.2
      install:
      - go get golang.org/x/tools/cmd/cover
      - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
      - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
    - go: 1.3
      install:
      - go get golang.org/x/tools/cmd/cover
      - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
      - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
    - go: 1.4
      install:
      - go get golang.org/x/tools/cmd/cover
      - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
      - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
    - go: 1.5
      install:
      - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
      - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
    - go: 1.6
      install:
      - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
      - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
    - go: tip
      install:
      - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
      - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
script:
  - go test -cover ./...