diff options
author | Evgeny Kuznetsov <evgeny@kuznetsov.md> | 2019-11-02 19:39:26 +0300 |
---|---|---|
committer | Evgeny Kuznetsov <evgeny@kuznetsov.md> | 2019-11-02 19:39:26 +0300 |
commit | 60f5a1f7e732ae6cd02051f39bc8d3ea0e80f306 (patch) | |
tree | a3309a4b5faed90a92b704baf67983b0314e722e /.travis.yml | |
parent | f591fb02938c6ae30a21c1142bdb334f8e43a4fa (diff) | |
download | radiorus-rss-60f5a1f7e732ae6cd02051f39bc8d3ea0e80f306.tar.gz radiorus-rss-60f5a1f7e732ae6cd02051f39bc8d3ea0e80f306.zip |
chore: add badges
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c401935..7fb90ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,10 +10,13 @@ before_script: script: - golangci-lint run - - go test -v -race ./... + - go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... - go build cache: directories: - $HOME/.cache/go-build - $HOME/gopath/pkg/mod + +after_success: + - bash <(curl -s https://codecov.io/bash) |