feat(CI): Enforce strict checking of YAML files

Use the `--strict` flag to check all rules on local YAML files, to
prevent all problems (including warnings). This includes the newly added
`truthy` rule.
This commit is contained in:
Adrien Vergé
2016-11-18 11:55:09 +01:00
parent 21e81b6435
commit 3bc72d4c40

View File

@@ -11,7 +11,7 @@ install:
- pip install .
script:
- flake8 .
- yamllint $(git ls-files '*.yaml' '*.yml')
- yamllint --strict $(git ls-files '*.yaml' '*.yml')
- coverage run --source=yamllint setup.py test
after_success:
coveralls