aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 3c5021e2e90c7a4878fb6c68b4812a180f511885 (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.v1
  - go get -v -t ./...

script:
  - go test -v ./...