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