1language: go
2
3script:
4  - go test -race -v ./...
5
6go:
7  - 1.5
8  - 1.6
9  - 1.7
10  - 1.8
11  - tip
12
13matrix:
14  allow_failures:
15    - go: tip
16
17install:
18  - go get gopkg.in/fsnotify/fsnotify.v1
19  - go get gopkg.in/tomb.v1
20