12 lines
183 B
YAML
12 lines
183 B
YAML
|
stages:
|
||
|
- check
|
||
|
|
||
|
shellcheck:
|
||
|
stage: check
|
||
|
image: debian:stable
|
||
|
before_script:
|
||
|
- apt-get update
|
||
|
- apt-get install -y shellcheck
|
||
|
script:
|
||
|
- shellcheck uncloud-init
|