Added pipeline step for checking all shell scripts in the repo

Indrek Haav
2021-11-18 22:31:53 +02:00
parent a8777bb375
commit f07191cf55

@@ -12,3 +12,13 @@ steps:
commands:
- "shellcheck testScript.sh"
```
To check all .sh files in the repo:
```yaml
steps:
- name: shellcheck
image: koalaman/shellcheck-alpine:stable
commands:
- "find . -name *.sh -exec shellcheck {} +"
```