Skip to content

Commit cb0580a

Browse files
carlossgCarlos Sanchez
and
Carlos Sanchez
authored
test: add a makefile (#26)
for local development Co-authored-by: Carlos Sanchez <[email protected]>
1 parent e4ba67c commit cb0580a

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ end_of_line = lf
77
charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
10+
[Makefile]
11+
indent_style = tab

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)