compendium
ref: b1487d799d5917da525eced62dafe253061c2269
./.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 {} \+
|