From 67c8f5047e8154d3a5742daed6e40f3b3b28b7a9 Mon Sep 17 00:00:00 2001 From: Vincent Composieux Date: Sun, 20 Oct 2019 01:23:07 +0200 Subject: [PATCH] Update .travis.yml --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4261faf..c5d0316 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: go + matrix: include: - go: 1.x @@ -15,4 +16,7 @@ install: - go get -t -v ./... script: - - go test -cover -v ./... + - go test -cover -coverprofile=coverage.txt -covermode=atomic -v ./... + +after_success: + - bash <(curl -s https://codecov.io/bash)