2023-04-17 12:21:48 +02:00

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
...