Skip to content
This repository has been archived by the owner on Dec 8, 2017. It is now read-only.

Commit

Permalink
Add circle ci and coverall settings
Browse files Browse the repository at this point in the history
  • Loading branch information
xerial committed Sep 10, 2016
1 parent 43fd52c commit b05b899
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# wvlet-log [![Gitter Chat][gitter-badge]][gitter-link] [![CircleCI](https://circleci.com/gh/wvlet/log.svg?style=svg)](https://circleci.com/gh/wvlet/log) [![Coverage Status][coverall-badge]][coverall-link]

[gitter-badge]: https://badges.gitter.im/Join%20Chat.svg
[gitter-link]: https://gitter.im/wvlet/log?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
[coverall-badge]: https://coveralls.io/repos/github/wvlet/log/badge.svg?branch=master
[coverall-link]: https://coveralls.io/github/wvlet/log?branch=master

wvlet-log
===

wvlet-log is a library for adding fancy logging to your Scala application:

Expand Down
19 changes: 19 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
machine:
timezone: UTC
java:
version: oraclejdk8

dependencies:
cache_directories:
- "~/.sbt"
- "~/.ivy2"
pre:
- ./sbt sbt-version
override:
- ./sbt compile

test:
override:
- ./sbt coverage test coverageReport && ./sbt coverageAggregate
post:
- ./sbt coveralls

0 comments on commit b05b899

Please sign in to comment.