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.
 
 
 

16 lines
253 B

  1. # Allow Travis to use container based infrastructure
  2. sudo: false
  3. language: go
  4. go:
  5. - 1.9.x
  6. - 1.10.x
  7. install:
  8. - go get -u golang.org/x/net/websocket
  9. - go get -u github.com/golang/lint/golint
  10. script:
  11. - golint ./...
  12. - go test -v ./... --race