Skip to content

Commit

Permalink
Add Codecov step to Travis config
Browse files Browse the repository at this point in the history
Signed-off-by: Max Riveiro <[email protected]>
  • Loading branch information
kavu committed Jan 14, 2017
1 parent 5489088 commit 3d6c1e4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ before_install:

script:
- go test -v -cover ./...
- go test -v -cover -benchmem -benchtime=5s -bench=.
- go test -v -cover -race ./...
- go test -v -cover -race ./... -coverprofile=coverage.txt -covermode=atomic
- go test -v -cover -race -benchmem -benchtime=5s -bench=.

matrix:
allow_failures:
- go: tip

after_success:
- bash <(curl -s https://codecov.io/bash)

0 comments on commit 3d6c1e4

Please sign in to comment.