From 32eff3cfee2947d0780eb2b7e4daa45462b036bb Mon Sep 17 00:00:00 2001 From: Dustin Oprea Date: Sat, 11 Jul 2020 13:42:32 -0400 Subject: [PATCH] .travis.yml: Switch to codecov.io --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 373cd34..162896e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,6 @@ env: - GO111MODULE=on install: - go get -t ./... - - go get github.com/mattn/goveralls script: # v1 - go test -v . @@ -17,6 +16,9 @@ script: # v2 - cd v2 - go test -v ./... + - cd .. # v3. Coverage reports comes from this. - - cd ../v3 - - EXIF_MODULE_ROOT_PATH="$(pwd)" goveralls -v -service=travis-ci + - cd v3 + - go test -v ./... -coverprofile=coverage.txt -covermode=atomic +after_success: + - curl -s https://codecov.io/bash | bash