diff options
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 5172bffe..5ea8b20d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,4 +20,7 @@ install: - go get -u "github.com/stretchr/testify/assert" script: - - go test -race -v
\ No newline at end of file + - go test -race -v -coverprofile=coverage.txt -covermode=atomic + +after_success: + - bash <(curl -s https://codecov.io/bash) |