aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: a4b2dd6e9a3c576a18845350d8d70c60d7e78f63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: go

go:
  - 1.3
  - 1.4
  - 1.5
  - 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:
  - go test -v ./...