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 f33ecad commit beb30f2Copy full SHA for beb30f2
.travis.yml
@@ -3,8 +3,8 @@ scala:
3
- 2.10.4
4
- 2.11.5
5
sudo: false
6
-script: sbt clean coverage test
7
-after_success: sbt coveralls
+script: sbt ++${TRAVIS_SCALA_VERSION} clean $(if [[ "${TRAVIS_SCALA_VERSION}" == "2.11.5" ]]; then echo coverage ; else echo "" ; fi) test
+after_success: sbt $(if [[ "${TRAVIS_SCALA_VERSION}" == "2.11.5" ]]; then echo coveralls ; else echo "" ; fi)
8
addons:
9
postgresql: '9.3'
10
before_script:
0 commit comments