We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9db9d7 commit 691f4e2Copy full SHA for 691f4e2
.travis.yml
@@ -1,3 +1,8 @@
1
language: scala
2
scala:
3
- - 2.12.4
+ - 2.12.4
4
+script:
5
+ - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; fi'
6
+ - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; fi'
7
+after_success:
8
+ - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi'
0 commit comments