github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/libraries/igm/sockjs-go.v2/.travis.yml (about)

     1  sudo: false
     2  language: go
     3  notifications:
     4    email:
     5    - igor.mihalik+travis@gmail.com
     6  
     7  before_install:
     8  - go get golang.org/x/tools/cmd/cover
     9  - go get github.com/mattn/goveralls
    10  
    11  after_success:
    12  - go test ./sockjs -coverprofile=profile.out -covermode=count
    13  - PATH=$HOME/gopath/bin:$PATH goveralls -coverprofile=profile.out -service=travis-ci
    14  
    15  install:
    16  - go get -d -v -t ./...
    17  
    18  script: go test ./sockjs -v -race
    19  
    20  go:
    21  - 1.4.1