build: add circleci config for executing bats unit tests
This commit is contained in:
parent
5cb28fbc95
commit
b1e4660555
1 changed files with 13 additions and 0 deletions
13
.circleci/config.yml
Normal file
13
.circleci/config.yml
Normal 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
|
Loading…
Reference in a new issue