mirror of
https://github.com/zhigang1992/actions.git
synced 2026-01-12 22:45:39 +08:00
* Create a simple status update with curl * Add some lint and a new entrypoint.sh * Use key-value rather than json resultfile * Switch to pure shell * Remove unused line * Verbose it * Correct way of getting deployment-id * Use json in statusupdate * string interpolation * Clean up and lint it * Rename to github-deploy * Add licenses and README
10 lines
212 B
Makefile
10 lines
212 B
Makefile
SHELL_FILES=$(filter-out bin/JSON.sh, $(wildcard *.sh */*.sh))
|
|
BATS_TESTS=$(wildcard *.bats */*.bats)
|
|
|
|
.PHONY: shell-lint
|
|
shell-lint:
|
|
shellcheck $(SHELL_FILES)
|
|
|
|
.PHONY: shell-test
|
|
shell-test:
|
|
bats $(BATS_TESTS)
|