diff --git a/.circleci/config.yml b/.circleci/config.yml index 03e77c4f..f7b43c3b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -116,6 +116,7 @@ jobs: command: | script/test script/clj_http_lite_test + script/deps_clj_test # - run: # name: Performance report # command: | @@ -180,6 +181,7 @@ jobs: command: | script/test script/clj_http_lite_test + script/deps_clj_test # - run: # name: Performance report # command: | diff --git a/script/deps_clj_test b/script/deps_clj_test new file mode 100755 index 00000000..41407727 --- /dev/null +++ b/script/deps_clj_test @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +curl -sL https://raw.githubusercontent.com/borkdude/deps.clj/master/deps.clj -o deps_test.clj +chmod +x deps_test.clj +./bb deps_test.clj -Sdescribe +rm deps_test.clj