aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/soniakeys/graph/travis.sh
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/soniakeys/graph/travis.sh
parent8de8e05c483c6b5f23b14742315f1860211dcef7 (diff)
downloadgdrive-b5eb2866cfceb69b0d4dd4948273d679a884fbb2.tar.bz2
add Go dependencies by godep
see https://github.com/tools/godep
Diffstat (limited to 'vendor/github.com/soniakeys/graph/travis.sh')
-rw-r--r--vendor/github.com/soniakeys/graph/travis.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/soniakeys/graph/travis.sh b/vendor/github.com/soniakeys/graph/travis.sh
new file mode 100644
index 0000000..5a8030a
--- /dev/null
+++ b/vendor/github.com/soniakeys/graph/travis.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+set -ex
+go test ./...
+if [ "$TRAVIS_GO_VERSION" = "1.6" ]; then
+ GOARCH=386 go test ./...
+ go tool vet -example .
+ go get github.com/client9/misspell/cmd/misspell
+ go get github.com/soniakeys/vetc
+ misspell -error * */* */*/*
+ vetc
+fi