dotfiles/.gitlab-ci.yml
Severin Kaderli bae9c07eb7 Fix CI
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2018-12-13 22:45:59 +01:00

18 lines
608 B
YAML

image: ubuntu:latest
before_script:
- apt-get update && apt-get install -y --no-install-recommends shellcheck
Lint:
script:
- alias shellcheck="shellcheck -x --exclude=SC2034,SC1091,SC1090"
- shellcheck -x --exclude=SC2034,SC1091 ./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 ./install.sh
- shellcheck ./post-install.sh