diff options
Diffstat (limited to 'vendor/github.com/sevlyar/go-daemon/.travis.yml')
-rw-r--r-- | vendor/github.com/sevlyar/go-daemon/.travis.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/sevlyar/go-daemon/.travis.yml b/vendor/github.com/sevlyar/go-daemon/.travis.yml new file mode 100644 index 0000000..03d4305 --- /dev/null +++ b/vendor/github.com/sevlyar/go-daemon/.travis.yml @@ -0,0 +1,15 @@ +language: go + +go: + - 1.3 + - 1.5 + - tip + +before_install: + - go get -t -v ./... + +script: + - go test -v -coverprofile=coverage.txt -covermode=atomic + +after_success: + - bash <(curl -s https://codecov.io/bash) |