summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 92bbffe594c3a2a35b29efa873e9c81673c2e378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: go

go:
  - 1.4.3
  - 1.5.3
  - tip

install:
  - go get -d ./...
  - go get golang.org/x/tools/cmd/vet

script:
  - go vet ./...
  - go test ./...