git-lab-ci.yml syntax

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

View File

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