Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtyls authored Mar 27, 2019
1 parent 3aa1124 commit 3cb0fe0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
hello: circleci/[email protected]

executors:
lein_executor:
lein_exec:
docker:
- image: "clojure:lein-2.8.1"
working_directory: ~/project
Expand All @@ -24,16 +24,25 @@ commands:

jobs:
build:
executor: lein_executor
executor: lein_exec
steps:
- checkout
- sayhello:
to: "Lev"
- hello/hello-triggerer:
to: "Leo"
test:
executor: lein_exec
environment:
TESTS: unit
steps:
- checkout
- run: echo "how are you"

workflows:
"Hello Workflow":
jobs:
- build
- test
- hello/hello-build

0 comments on commit 3cb0fe0

Please sign in to comment.