Skip to content

Commit

Permalink
Fix indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruedigergad committed Jan 13, 2024
1 parent ce9b23b commit f4f667f
Showing 1 changed file with 20 additions and 21 deletions.
41 changes: 20 additions & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,26 @@ orbs:
coveralls: coveralls/coveralls@2.2.1

jobs:
run_tests_job:
docker:
- image: circleci/clojure:lein-2.9.5
working_directory: ~/repo
environment:
# LEIN_ROOT: "true"
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "project.clj" }}
- v1-dependencies-
- run: lein deps
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "project.clj" }}
- run: 'lein test'
- run: 'lein cloverage -o cov --coveralls'
- coveralls/upload
run_tests_job:
docker:
- image: circleci/clojure:lein-2.9.5
working_directory: ~/repo
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "project.clj" }}
- v1-dependencies-
- run: lein deps
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "project.clj" }}
- run: 'lein test'
- run: 'lein cloverage -o cov --coveralls'
- coveralls/upload

workflows:
run_tests:
Expand Down

0 comments on commit f4f667f

Please sign in to comment.