Files
actions/shell.mk
Ole Christian Langfjæran 1d96a59540 Add deployment-scripts to shellcheck
Was missing from the wildcard
2019-01-10 12:29:08 +01:00

10 lines
229 B
Makefile

SHELL_FILES=$(filter-out bin/JSON.sh, $(wildcard *.sh */*.sh bin/deployment-*))
BATS_TESTS=$(wildcard *.bats */*.bats)
.PHONY: shell-lint
shell-lint:
shellcheck $(SHELL_FILES)
.PHONY: shell-test
shell-test:
bats $(BATS_TESTS)