mirror of
https://github.com/adrienverge/yamllint.git
synced 2024-11-26 01:20:15 -06:00
19 lines
282 B
YAML
19 lines
282 B
YAML
|
---
|
||
|
language: python
|
||
|
python:
|
||
|
- 2.6
|
||
|
- 2.7
|
||
|
- 3.3
|
||
|
- 3.4
|
||
|
- 3.5
|
||
|
- nightly
|
||
|
install:
|
||
|
- pip install pyyaml flake8 coveralls
|
||
|
- pip install .
|
||
|
script:
|
||
|
- flake8 .
|
||
|
- yamllint $(git ls-files '*.yml')
|
||
|
- coverage run --source=yamllint setup.py test
|
||
|
after_success:
|
||
|
coveralls
|