.travis.yml: Switch to codecov.io

dustin/master
Dustin Oprea 2020-07-11 13:42:32 -04:00
parent 9e26737f70
commit 32eff3cfee
1 changed files with 5 additions and 3 deletions

View File

@ -9,7 +9,6 @@ env:
- GO111MODULE=on - GO111MODULE=on
install: install:
- go get -t ./... - go get -t ./...
- go get github.com/mattn/goveralls
script: script:
# v1 # v1
- go test -v . - go test -v .
@ -17,6 +16,9 @@ script:
# v2 # v2
- cd v2 - cd v2
- go test -v ./... - go test -v ./...
- cd ..
# v3. Coverage reports comes from this. # v3. Coverage reports comes from this.
- cd ../v3 - cd v3
- EXIF_MODULE_ROOT_PATH="$(pwd)" goveralls -v -service=travis-ci - go test -v ./... -coverprofile=coverage.txt -covermode=atomic
after_success:
- curl -s https://codecov.io/bash | bash