summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml')
-rw-r--r--Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml b/Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml
index 67467e140..1b5151f12 100644
--- a/Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml
+++ b/Godeps/_workspace/src/gopkg.in/fsnotify.v1/.travis.yml
@@ -2,10 +2,15 @@ sudo: false
language: go
go:
- - 1.4.1
+ - 1.5.1
before_script:
- - FIXED=$(go fmt ./... | wc -l); if [ $FIXED -gt 0 ]; then echo "gofmt - $FIXED file(s) not formatted correctly, please run gofmt to fix this." && exit 1; fi
+ - go get -u github.com/golang/lint/golint
+
+after_script:
+ - test -z "$(gofmt -s -l -w . | tee /dev/stderr)"
+ - test -z "$(golint ./... | tee /dev/stderr)"
+ - go vet ./...
os:
- linux