mirror of
https://github.com/zhigang1992/actions.git
synced 2026-01-12 08:53:47 +08:00
10 lines
229 B
Makefile
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)
|