1
0
mirror of https://github.com/strongdm/comply synced 2024-11-17 05:14:55 +00:00
comply/vendor/github.com/fsnotify/fsnotify/.travis.yml

37 lines
589 B
YAML
Raw Normal View History

2018-05-15 21:13:11 +00:00
sudo: false
language: go
go:
- "stable"
- "1.11.x"
- "1.10.x"
- "1.9.x"
2018-05-15 21:13:11 +00:00
matrix:
include:
- go: "stable"
env: GOLINT=true
2018-05-15 21:13:11 +00:00
allow_failures:
- go: tip
fast_finish: true
before_install:
- if [ ! -z "${GOLINT}" ]; then go get -u golang.org/x/lint/golint; fi
2018-05-15 21:13:11 +00:00
script:
- go test --race ./...
2018-05-15 21:13:11 +00:00
after_script:
- test -z "$(gofmt -s -l -w . | tee /dev/stderr)"
- if [ ! -z "${GOLINT}" ]; then echo running golint; golint --set_exit_status ./...; else echo skipping golint; fi
2018-05-15 21:13:11 +00:00
- go vet ./...
os:
- linux
- osx
- windows
2018-05-15 21:13:11 +00:00
notifications:
email: false