File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 7
7
- sbt test
8
8
9
9
before_install :
10
- - openssl aes-256-cbc -K $encrypted_2c5f221846d5_key -iv $encrypted_2c5f221846d5_iv
11
- -in secring.gpg.enc -out secring.gpg -d
10
+ - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then
11
+ openssl aes-256-cbc -K $encrypted_2c5f221846d5_key -iv $encrypted_2c5f221846d5_iv -in secring.gpg.enc -out secring.gpg -d;
12
+ fi
12
13
13
14
after_success :
14
15
- if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ lazy val fpinscala = (project in file("."))
12
12
),
13
13
libraryDependencies ++= Seq (
14
14
" org.scalatest" %% " scalatest" % " 2.2.4" ,
15
- " org.scala-exercises" %% " exercise-compiler" % " 0.2.5-SNAPSHOT " ,
16
- " org.scala-exercises" %% " definitions" % " 0.2.5-SNAPSHOT " ,
15
+ " org.scala-exercises" %% " exercise-compiler" % version.value ,
16
+ " org.scala-exercises" %% " definitions" % version.value ,
17
17
" org.scalacheck" %% " scalacheck" % " 1.12.5" ,
18
18
" com.github.alexarchambault" %% " scalacheck-shapeless_1.12" % " 0.3.1" ,
19
19
compilerPlugin(" org.spire-math" %% " kind-projector" % " 0.9.0" )
You can’t perform that action at this time.
0 commit comments