Fix unit tests
[govpp.git] / vendor / github.com / fsnotify / fsnotify / .travis.yml
1 sudo: false
2 language: go
3
4 go:
5   - 1.8
6   - 1.7.x
7   - tip
8
9 matrix:
10   allow_failures:
11     - go: tip
12   fast_finish: true
13
14 before_script:
15   - go get -u github.com/golang/lint/golint
16
17 script:
18   - go test -v --race ./...
19
20 after_script:
21   - test -z "$(gofmt -s -l -w . | tee /dev/stderr)"
22   - test -z "$(golint ./...     | tee /dev/stderr)"
23   - go vet ./...
24
25 os:
26   - linux
27   - osx
28
29 notifications:
30   email: false