Skip to content

Commit

Permalink
chore: Add CircleCI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
aseure committed Sep 4, 2018
1 parent 8ee38f8 commit 127e8cb
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
version: 2
jobs:
check_format:
docker:
- image: circleci/openjdk:8-jdk
environment:
JVM_OPTS: -Xmx3200m -Dsun.net.maxDatagramSockets=2048
steps:
- checkout
- run: sbt scalafmtTest
test:
docker:
- image: circleci/openjdk:8-jdk
environment:
JVM_OPTS: -Xmx3200m -Dsun.net.maxDatagramSockets=2048
steps:
- checkout
- run: sbt clean
- run: sbt test
coverage:
docker:
- image: circleci/openjdk:8-jdk
environment:
JVM_OPTS: -Xmx3200m -Dsun.net.maxDatagramSockets=2048
steps:
- checkout
- run: sbt coverage
- run: sbt coverageReport
- run: sbt coveralls
workflows:
version: 2
all:
jobs:
- check_format
- test
- coverage

0 comments on commit 127e8cb

Please sign in to comment.