Add CI config
This commit is contained in:
parent
0b58b44c8b
commit
f3b7c46ed1
1 changed files with 24 additions and 0 deletions
24
.circleci/config.yml
Normal file
24
.circleci/config.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
version: 2.1
|
||||
jobs:
|
||||
test:
|
||||
docker:
|
||||
- image: circleci/clojure:openjdk-11-lein-2.9.8-bullseye
|
||||
working_directory: ~/repo
|
||||
environment:
|
||||
LEIN_ROOT: "true"
|
||||
BABASHKA_PLATFORM: linux
|
||||
resource_class: large
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
keys:
|
||||
- v1-dependencies-{{ checksum "project.clj" }}-{{ checksum "deps.edn" }}
|
||||
# fallback to using latest cache if no exact match is found
|
||||
- v1-dependencies-
|
||||
- run: |
|
||||
script/test
|
||||
workflows:
|
||||
version: 2
|
||||
ci:
|
||||
jobs:
|
||||
- test
|
||||
Loading…
Reference in a new issue