diff options
Diffstat (limited to 'vendor/github.com/valyala/bytebufferpool/.travis.yml')
-rw-r--r-- | vendor/github.com/valyala/bytebufferpool/.travis.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/valyala/bytebufferpool/.travis.yml b/vendor/github.com/valyala/bytebufferpool/.travis.yml new file mode 100644 index 00000000..6a6ec2eb --- /dev/null +++ b/vendor/github.com/valyala/bytebufferpool/.travis.yml @@ -0,0 +1,15 @@ +language: go + +go: + - 1.6 + +script: + # build test for supported platforms + - GOOS=linux go build + - GOOS=darwin go build + - GOOS=freebsd go build + - GOOS=windows go build + - GOARCH=386 go build + + # run tests on a standard platform + - go test -v ./... |