dotfiles/.gitlab-ci.yml
Severin Kaderli c42bd33b8c Document bash files in system/
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2018-12-13 23:11:10 +01:00

20 lines
641 B
YAML

image: ubuntu:latest
before_script:
- apt-get update && apt-get install -y --no-install-recommends shellcheck
- shopt -s expand_aliases
- alias shellcheck="shellcheck -x --exclude=SC2034,SC1091,SC1090"
Lint:
script:
- shellcheck ./system/bin/*
- shellcheck ./system/.aliases
- shellcheck ./system/.bash_logout
- shellcheck ./system/.bash_profile
- shellcheck ./system/.bashrc
- shellcheck ./system/.env
- shellcheck ./system/.keyleds
- shellcheck ./system/.xinitrc
- shellcheck ./system/.xprofile
- shellcheck ./system/.xsetup
- shellcheck ./install.sh
- shellcheck ./post-install.sh