mirror of
https://github.com/mdlayher/homelab.git
synced 2024-12-15 17:50:54 +00:00
34ecd7d4c5
Signed-off-by: Matt Layher <mdlayher@gmail.com>
12 lines
411 B
YAML
12 lines
411 B
YAML
image: archlinux
|
|
packages:
|
|
- yamllint
|
|
sources:
|
|
- https://github.com/mdlayher/homelab
|
|
tasks:
|
|
- build: |
|
|
cd homelab/
|
|
# Sanity check all YAML files:
|
|
# - ignore line-length lint
|
|
# - ignore ansible vault-encrypted files
|
|
diff -u <(echo -n) <(yamllint -f parsable ./ansible | grep -v "line-length" | grep -E -v "[alertmanager,rtorrent_exporter,spotifyd,traefik]/vars/main.yml")
|