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