aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorlyric <tiannianshou@gmail.com>2018-06-13 10:15:27 +0300
committerlyric <tiannianshou@gmail.com>2018-06-13 10:15:27 +0300
commit28fbf41cb8f19c79543071588c2ac9a871ea19e5 (patch)
tree5bedc845cc3f884494f17f0359f9dace670c8fb0 /.travis.yml
parent898db00a63f20ce213198117ce6b663c293c93c3 (diff)
update import pathv3.0.0
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index fa89548..c732b2b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,10 @@ go_import_path: github.com/go-session/echo-session
go:
- 1.9
before_install:
- - go get github.com/mattn/goveralls
+ - go get -t -v ./...
+
script:
- - $HOME/gopath/bin/goveralls -service=travis-ci
+ - go test -race -coverprofile=coverage.txt -covermode=atomic
+
+after_success:
+ - bash <(curl -s https://codecov.io/bash)