You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
308 B

  1. language: go
  2. sudo: false
  3. os:
  4. - linux
  5. go:
  6. - 1.7.x
  7. - 1.8.x
  8. - 1.9.x
  9. - 1.10.x
  10. - 1.11.x
  11. - tip
  12. install:
  13. - echo "This is an override of the default install deps step in travis."
  14. script:
  15. - go build -v .
  16. - go vet $(go list ./... | grep -v vendor)
  17. - go test $(go list ./... | grep -v vendor)