build: add circleci config for executing bats unit tests

This commit is contained in:
malnick 2019-09-26 20:08:22 -07:00 committed by Jeff Malnick
parent 5cb28fbc95
commit b1e4660555

13
.circleci/config.yml Normal file
View file

@ -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