dotfiles/.gitlab-ci.yml
2018-12-18 12:46:19 +00:00

21 lines
644 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