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.
 
 
 

14 lines
262 B

  1. language: go
  2. go:
  3. - tip
  4. install:
  5. - export GOPATH="$HOME/gopath"
  6. - mkdir -p "$GOPATH/src/golang.org/x"
  7. - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2"
  8. - go get -v -t -d golang.org/x/oauth2/...
  9. script:
  10. - go test -v golang.org/x/oauth2/...