From 51af94f70bca2c0e8f3fd0bd573c862649fb7731 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Tue, 7 Jan 2020 09:20:42 +0100 Subject: [PATCH] Add deps.clj test --- .circleci/config.yml | 2 ++ script/deps_clj_test | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100755 script/deps_clj_test 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