Skip to content

Commit 05e83b9

Browse files
committed
add CI config
1 parent ce38cab commit 05e83b9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
jobs:
3+
build:
4+
working_directory: ~/clj-http-lite
5+
docker:
6+
- image: circleci/clojure:lein-2.7.1
7+
environment:
8+
JVM_OPTS: -Xmx3200m
9+
steps:
10+
- checkout
11+
- restore_cache:
12+
key: clj-http-lite-{{ checksum "project.clj" }}
13+
- run: lein deps
14+
- save_cache:
15+
paths:
16+
- ~/.m2
17+
key: clj-http-lote-{{ checksum "project.clj" }}
18+
- run: lein all do clean, test :all

0 commit comments

Comments
 (0)