dotfiles/.gitlab-ci.yml
Severin Kaderli 3ba8e43c79 Add more files to linting
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2018-12-13 22:22:03 +01:00

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