mirror of
https://github.com/mdlayher/homelab.git
synced 2024-12-14 11:47:32 +00:00
11 lines
315 B
YAML
11 lines
315 B
YAML
---
|
|
os:
|
|
- linux
|
|
sudo: required
|
|
before_install:
|
|
- sudo apt install -y yamllint
|
|
script:
|
|
# 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 -v "traefik/vars/main.yml")
|