18 lines
601 B
YAML
18 lines
601 B
YAML
image: ubuntu:latest
|
|
|
|
before_script:
|
|
- apt-get update && apt-get install -y --no-install-recommends shellcheck
|
|
|
|
Lint:
|
|
script:
|
|
- shellcheck -x --exclude=SC2034,SC1091 ./system/bin/*
|
|
- shellcheck -x ./system/bin/.aliases
|
|
- shellcheck -x ./system/bin/.bash_logout
|
|
- shellcheck -x ./system/bin/.bash_profile
|
|
- shellcheck -x ./system/bin/.bashrc
|
|
- shellcheck -x ./system/bin/.env
|
|
- shellcheck -x ./system/bin/.keyleds
|
|
- shellcheck -x ./system/bin/.xinitrc
|
|
- shellcheck -x ./system/bin/.xprofile
|
|
- shellcheck -x ./install.sh
|
|
- shellcheck -x ./post-install.sh
|