https://codecov.io | @codecov | hello@codecov.io |
---|
This repository serves as an example on how to use Codecov Global for Scala.
Add to your .travis.yml
file.
language: scala
script:
- sbt clean coverage test
after_success:
- bash <(curl -s https://codecov.io/bash)
All other CI you can simply run
pip install --user codecov && codecov
.
Add to your .travis.yml
file.
env:
global:
- CODECOV_TOKEN=:uuid-repo-token
after_success:
- pip install --user codecov && codecov
View source and learn more about Codecov Global Uploader