10 lines
251 B
YAML
10 lines
251 B
YAML
image: ubuntu:latest
|
|
|
|
before_script:
|
|
- apt-get update && apt-get install -y --no-install-recommends shellcheck
|
|
|
|
Lint:
|
|
script:
|
|
- shellcheck -x disable=SC2034 ./system/bin/*
|
|
- shellcheck -x ./install.sh
|
|
- shellcheck -x ./post-install.sh
|