Add codecov.io configuration to travis file

This commit is contained in:
Leonel Quinteros
2016-08-09 12:29:36 -03:00
parent a735812a72
commit ffcea86f47

View File

@@ -1,7 +1,15 @@
language: go language: go
script: go test -v -race ./...
go: go:
- 1.5 - 1.5
- 1.6 - 1.6
- tip - tip
before_install:
- go get -t -v ./...
script: go test -v -race -coverprofile=coverage.txt -covermode=atomic .
after_success:
- bash <(curl -s https://codecov.io/bash)