18 lines
513 B
YAML
18 lines
513 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 ./.aliases
|
|
- shellcheck -x ./.bash_logout
|
|
- shellcheck -x ./.bash_profile
|
|
- shellcheck -x ./.bashrc
|
|
- shellcheck -x ./.env
|
|
- shellcheck -x ./.keyleds
|
|
- shellcheck -x ./.xinitrc
|
|
- shellcheck -x ./.xprofile
|
|
- shellcheck -x ./install.sh
|
|
- shellcheck -x ./post-install.sh
|