aboutsummaryrefslogblamecommitdiffstats
path: root/.travis.yml
blob: b0f8e87605a012ca5a3081678517c989d560ffe8 (plain) (tree)
1
2
3
4
5
6
7
8
9


            
       
       
 


                 
 


                                       
                                                   
                      

       
                      


                                           
language: go

go:
  - 1.6
  - tip

matrix:
  allow_failures:
    - go: tip

install:
  - rm -rf $GOPATH/src/gopkg.in/src-d
  - mkdir -p $GOPATH/src/gopkg.in/src-d
  - ln -s $PWD $GOPATH/src/gopkg.in/src-d/go-git.v4
  - go get -v -t ./...

script:
  - make test-coverage

after_success:
  - bash <(curl -s https://codecov.io/bash)