From 0d0f42b9b57264139a50db682da2d9832984f0b1 Mon Sep 17 00:00:00 2001 From: Roshan Ranabhat Date: Wed, 22 Apr 2020 17:02:16 +0545 Subject: [PATCH] Travis ci config change --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f43ccd6..0d8676a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,11 @@ language: go sudo: false go_import_path: github.com/gobeam/Stringy go: -- 1.13 + - 1.13 + +before_install: + - go get github.com/mattn/goveralls script: -- go test - -after_success: -- bash <(curl -s https://codecov.io/bash) + - go test -cover -coverprofile=.coverprofile $(go list .) + - $GOPATH/bin/goveralls -service=travis-ci -coverprofile=.coverprofile