aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/sabhiram/go-git-ignore/.travis.yml
diff options
context:
space:
mode:
authorPaul Zabelin2016-04-17 03:22:31 -0700
committerPaul Zabelin2016-04-17 03:22:31 -0700
commitb5eb2866cfceb69b0d4dd4948273d679a884fbb2 (patch)
tree1fdb61a7138642a1612bb201434e8ebda141cc8a /vendor/github.com/sabhiram/go-git-ignore/.travis.yml
parent8de8e05c483c6b5f23b14742315f1860211dcef7 (diff)
downloadgdrive-b5eb2866cfceb69b0d4dd4948273d679a884fbb2.tar.bz2
add Go dependencies by godep
see https://github.com/tools/godep
Diffstat (limited to 'vendor/github.com/sabhiram/go-git-ignore/.travis.yml')
-rw-r--r--vendor/github.com/sabhiram/go-git-ignore/.travis.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/github.com/sabhiram/go-git-ignore/.travis.yml b/vendor/github.com/sabhiram/go-git-ignore/.travis.yml
new file mode 100644
index 0000000..24ddadf
--- /dev/null
+++ b/vendor/github.com/sabhiram/go-git-ignore/.travis.yml
@@ -0,0 +1,18 @@
+language: go
+
+go:
+ - 1.3
+ - tip
+
+env:
+ - "PATH=$HOME/gopath/bin:$PATH"
+
+before_install:
+ - go get github.com/stretchr/testify/assert
+ - go get github.com/axw/gocov/gocov
+ - go get github.com/mattn/goveralls
+ - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
+
+script:
+ - go test -v -covermode=count -coverprofile=coverage.out
+ - goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN