Skip to content

Commit cc11cd8

Browse files
committed
[CircleCI] Enable clojure build/scan
Signed-off-by: Greg Haskins <[email protected]>
1 parent b4e3f69 commit cc11cd8

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

.circleci/config.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,18 @@ version: 2.1
55
# Define a job to be invoked later in a workflow.
66
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
77
jobs:
8-
say-hello:
9-
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
10-
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
8+
build:
119
docker:
12-
- image: cimg/base:stable
13-
# Add steps to the job
14-
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
10+
- image: cimg/clojure:1.11.1
1511
steps:
1612
- checkout
17-
- run:
18-
name: "Say hello"
19-
command: "echo Hello, World!"
13+
- run: |
14+
lein version
15+
lein cljfmt check
16+
lein cloverage
17+
lein jar
2018
21-
# Invoke jobs via workflows
22-
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
2319
workflows:
24-
say-hello-workflow:
20+
build-workflow:
2521
jobs:
26-
- say-hello
22+
- build

0 commit comments

Comments
 (0)