20 lines
698 B
YAML
20 lines
698 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/.local/bin/*
|
|
- shellcheck ./system/.config/custom/keyleds
|
|
- shellcheck ./system/.config/custom/aliases
|
|
- shellcheck ./system/.config/custom/env
|
|
- shellcheck ./system/.config/X11/xinitrc
|
|
- shellcheck ./system/.config/zsh/.zlogout
|
|
- shellcheck ./system/.config/zsh/.zprofile
|
|
- shellcheck ./system/.config/zsh/.zshrc
|
|
- shellcheck ./system/.config/X11/xsetup
|
|
- shellcheck ./install
|
|
- shellcheck ./post-install
|