aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 4c3a72337c08edd92645ba562d09be649a04a91e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: go

go:
  - 1.4
  - 1.5
  - 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.v2
  - go get -v -t ./...

script:
  - make test-coverage

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