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 e33faf8 commit dd31821Copy full SHA for dd31821
.ci_scripts/validate.sh
@@ -4,7 +4,7 @@ set -e
4
5
echo "[INFO] Check the source format"
6
7
-sbt scalafmt test:scalafmt > /dev/null
+sbt ++$TRAVIS_SCALA_VERSION scalafmt test:scalafmt > /dev/null
8
git diff --exit-code || (cat >> /dev/stdout <<EOF
9
[ERROR] Scalafmt check failed, see differences above.
10
To fix, format your sources using sbt scalafmt test:scalafmt before submitting a pull request.
@@ -15,4 +15,4 @@ false
15
16
echo "[INFO] Running tests" >> /dev/stdout
17
18
-sbt clean +test
+sbt ++$TRAVIS_SCALA_VERSION test
.travis.yml
@@ -1,5 +1,8 @@
1
sudo: false
2
language: scala
3
+scala:
+ - 2.12.7
+ - 2.11.12
jdk:
- oraclejdk8
cache:
0 commit comments