11 lines
187 B
YAML
11 lines
187 B
YAML
stages:
|
|
- check
|
|
|
|
shellcheck:
|
|
stage: check
|
|
image: debian:stable
|
|
before_script:
|
|
- apt-get update
|
|
- apt-get install -y shellcheck
|
|
script:
|
|
- shellcheck bin/uncloud-init
|