Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 70d0bf2

Browse files
authored
Merge pull request #2 from circleci/circleci-project-setup
Add .circleci/config.yml
2 parents d8f39af + e3ff9a6 commit 70d0bf2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2.1
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: circleci/clojure:lein-2.9.5
7+
working_directory: ~/repo
8+
steps:
9+
- checkout
10+
- restore_cache:
11+
keys:
12+
- v1-dependencies-{{ checksum "project.clj" }}
13+
- v1-dependencies-
14+
- run: lein deps
15+
- save_cache:
16+
paths:
17+
- ~/.m2
18+
key: v1-dependencies-{{ checksum "project.clj" }}
19+
- run: lein test-all
20+
21+
workflows:
22+
build-and-test:
23+
jobs:
24+
- build

0 commit comments

Comments
 (0)