Skip to content

Commit f644412

Browse files
author
Carlos Sanchez
committed
test: add a makefile
for local development
1 parent e4ba67c commit f644412

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.PHONY: test lint
2+
3+
all: lint test build
4+
5+
test:
6+
bats --recursive test/
7+
8+
lint:
9+
find test/ -name "*.bats" -exec shellcheck {} \;
10+
yamllint test/
11+
12+
build:
13+
./build.sh

0 commit comments

Comments
 (0)