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

go:
  - 1.7
  - tip

matrix:
  allow_failures:
    - go: tip


before_install:
  - eval "$(ssh-agent -s)"
  # we only decrypt the SSH key when we aren't in a pull request 
  - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash .travis/install_key.sh; fi'

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
  - cd $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)