image: alpine:latest

lint:shell-script:
  stage: test
  image: koalaman/shellcheck-alpine:latest
  before_script:
    - shellcheck -V
  script:
    - find bin -type f -name "*" -exec shellcheck {} \;