Created
December 13, 2017 01:59
-
-
Save nachinius/ff18b25fae960e8521fb54004809d393 to your computer and use it in GitHub Desktop.
scala with coveralls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: scala | |
scala: | |
- 2.12.4 | |
script: | |
- sbt clean coverage test coverageReport && | |
sbt coverageAggregate | |
after_success: | |
- sbt coveralls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
requires project/plugins.sbt with
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.1.0")