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.
 
 
 

20 lines
288 B

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