Get shellcheck working for the bin/ scripts

This commit is contained in:
decentral1se 2021-04-02 15:39:02 +02:00
parent 18f8ea982e
commit 2b0f691d5f
Signed by untrusted user who does not match committer: decentral1se
GPG Key ID: 92DAD76BD9567B8A
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@ steps:
image: koalaman/shellcheck-alpine:v0.7.1
commands:
- shellcheck abra
- shellcheck bin/*.sh
- name: run unit tests
image: decentral1se/docker-dind-bats-kcov

View File

@ -21,7 +21,8 @@ shellcheck:
--rm \
-v $$(pwd):/workdir \
koalaman/shellcheck-alpine \
shellcheck /workdir/abra
shellcheck /workdir/abra && \
shellsheck /workdir/bin/*.sh
docopt:
@if [ ! -d ".venv" ]; then \