.travis.yml 🔗
@@ -9,3 +9,7 @@ install:
script:
- make test
+ - go test -race -coverprofile=coverage.txt -covermode=atomic
+
+after_success:
+ - bash <(curl -s https://codecov.io/bash)
Michael Muré created
.travis.yml | 4 ++++
1 file changed, 4 insertions(+)
@@ -9,3 +9,7 @@ install:
script:
- make test
+ - go test -race -coverprofile=coverage.txt -covermode=atomic
+
+after_success:
+ - bash <(curl -s https://codecov.io/bash)