Skip to content

Commit

Permalink
Build with CircleCI 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Molteni committed Sep 18, 2018
1 parent 0d5facb commit ab3faaf
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,22 @@
version: 2
jobs:
build:
docker:
- image: circleci/clojure:lein-2.8.1

steps:
- checkout

- restore_cache:
keys:
- m2-{{ checksum "project.clj" }}

- run: lein deps

- save_cache:
paths:
- ~/.m2
key: m2-{{ checksum "project.clj" }}

- run:
command: lein test

0 comments on commit ab3faaf

Please sign in to comment.