compendium
ref: 2b15c7cdc6d83d2125307ddc7d8810f1768fd432
./.travis.yml
1
2
3
4
5
6
|
language: minimal
dist: bionic
before_install:
- sudo apt-get -y install yamllint
script:
- find . -name '*.yml' -o -name '*.yaml' -exec yamllint --strict --format parsable {} \+
|