Skip to content

Commit

Permalink
v0.3.0 (#6)
Browse files Browse the repository at this point in the history
Update Circle CI configuration
Add status badge to project README
  • Loading branch information
thierrymarianne authored Nov 22, 2018
1 parent e393105 commit fbf0b82
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
28 changes: 17 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,41 @@
version: 2

defaults:
docker:
- image: circleci/clojure:lein-2.7.1

jobs:
build:
working_directory: ~/press-review-clojure
docker:
- image: circleci/clojure:lein-2.7.1

working_directory: ~/press-review-clojure

environment:
LEIN_ROOT: "true"
JVM_OPTS: -Xmx3200m
LEIN_ROOT: "true"
JVM_OPTS: -Xmx3200m

steps:
- checkout

- restore_cache:
key:
- v1-dependencies-{{{ checksum "project.clj" }}
keys:
- v1-dependencies-{{ checksum "project.clj" }}
- v1-dependencies

- run:
name: Copy test configuration
command: |
cp .lein-env.test.dist lein-env
- run:
name: Install dependencies
command: |
lein deps
- run:
name: Run test suite
command: |
lein test
- save_cache:
key: v1-dependencies-{{ checksum "project.clj" }}
paths:
- $HOME/.m2
- $HOME/.lein
- $HOME/.m2
- $HOME/.lein
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Daily Press Review

[![CircleCI](https://circleci.com/gh/thierrymarianne/daily-press-review-clojure.svg?style=svg)](https://circleci.com/gh/thierrymarianne/daily-press-review-clojure)

Easing observation of Twitter lists to publish a daily press review

## Dependencies
Expand Down

0 comments on commit fbf0b82

Please sign in to comment.