Skip to content

Commit

Permalink
add circleci configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaCrotti authored and bbatsov committed Aug 13, 2019
1 parent 559a335 commit baf0220
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2

references:
base_config: &base_config
working_directory: ~/sayid
docker:
- image: circleci/clojure:lein-2.9.1

jobs:
test:
<<: *base_config
steps:
- checkout
- run: lein test-all

workflows:
version: 2
build:
jobs:
- test

0 comments on commit baf0220

Please sign in to comment.