From 2125f5f7a8ff1647ad47663613860995c55be3b6 Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Tue, 30 Aug 2016 12:27:35 +0800 Subject: Update readme and Travis CI added. --- .travis.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yaml (limited to '.travis.yaml') diff --git a/.travis.yaml b/.travis.yaml new file mode 100644 index 0000000..d9f3ffd --- /dev/null +++ b/.travis.yaml @@ -0,0 +1,17 @@ +language: go + +install: + - go get -d -t -v ./... && go build -v ./... + +go: + - 1.5 + - 1.6 + - 1.7 + - tip + +script: + - go vet ./... + - go test -v -coverprofile=coverage.txt -covermode=atomic + +after_success: + - bash <(curl -s https://codecov.io/bash) \ No newline at end of file -- cgit v1.2.1