From b1e4660555ca7d0d40ab19e2479f042d6e862849 Mon Sep 17 00:00:00 2001 From: malnick Date: Thu, 26 Sep 2019 20:08:22 -0700 Subject: [PATCH] build: add circleci config for executing bats unit tests --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..357aa40 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,13 @@ +version: 2 +jobs: + bats-unit-test: + machine: true + steps: + - checkout + - run: make test-image + - run: make test-unit +workflows: + version: 2 + build_and_test: + jobs: + - bats-unit-test