git-lab-ci.yml syntax

This commit is contained in:
Matthias Kretschmann 2017-07-29 20:31:35 +02:00
parent 8248d97ee2
commit f5971e5b89
Signed by: m
GPG Key ID: 606EEEF3C479A91F
1 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,10 @@
image: bash
before_script: 'apk add shellcheck'
stages:
- lint
lint:
stage: install
script: 'apk add shellcheck && shellcheck .bash* bin/*'
stage: lint
script: 'shellcheck .bash* bin/*'