14 lines
194 B
YAML
14 lines
194 B
YAML
---
|
|
dist: trusty
|
|
|
|
language: python
|
|
|
|
install:
|
|
- sudo pip install yamllint
|
|
- pip install pyyaml pyaml
|
|
|
|
script:
|
|
- find data/ -name '*.yml' | xargs yamllint
|
|
- python scripts/collate.py
|
|
...
|