Skip to content

Commit

Permalink
Run CircleCI on scala 2.12 and 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
karolchmist committed Apr 24, 2020
1 parent 7a4ed0d commit 3ec6414
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,16 @@ jobs:
- run:
name: Compile tests
command: |
sbt test:compile
sbt publishLocal
sbt +test:compile
sbt +publishLocal
- run:
name: Test scala-forklift
command: sbt test:test
name: Test scala-forklift scala 2.12
command: sbt '++ 2.12.11; test:test'
environment:
JAVA_OPTS: "-Xms256m -Xmx512m"
- run:
name: Test scala-forklift scala 2.13
command: sbt '++ 2.13.1; test:test'
environment:
JAVA_OPTS: "-Xms256m -Xmx512m"
- save_cache:
Expand Down

0 comments on commit 3ec6414

Please sign in to comment.