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

  1. language: go
  2. sudo: false
  3. matrix:
  4. include:
  5. - go: 1.2
  6. - go: 1.3
  7. - go: 1.4
  8. - go: 1.5
  9. - go: 1.6
  10. - go: 1.7
  11. - go: tip
  12. install:
  13. - # Skip
  14. script:
  15. - go get -t -v ./...
  16. - diff -u <(echo -n) <(gofmt -d .)
  17. - go tool vet .
  18. - go test -v -race ./...