File: .travis.yml

package info (click to toggle)
golang-golang-x-oauth2 0.0~git20150527-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 272 kB
  • ctags: 216
  • sloc: makefile: 12
file content (14 lines) | stat: -rw-r--r-- 270 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: go

go:
  - 1.3
  - 1.4

install:
  - export GOPATH="$HOME/gopath"
  - mkdir -p "$GOPATH/src/golang.org/x"
  - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2"
  - go get -v -t -d golang.org/x/oauth2/...

script:
  - go test -v golang.org/x/oauth2/...