From f3b7c46ed12320ec93ad5efe9c9fdb89e2923c10 Mon Sep 17 00:00:00 2001 From: Wes Morgan Date: Wed, 23 Mar 2022 09:07:18 -0600 Subject: [PATCH] Add CI config --- .circleci/config.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..c99852d --- /dev/null +++ b/.circleci/config.yml @@ -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 \ No newline at end of file