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
340 B

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