1
0
mirror of https://github.com/lightning/bolts.git synced 2024-11-19 10:00:04 +01:00
lightning-bolts/.travis.yml
Christian Decker d9f98569cd travis-ci: Since we have code in here we need to test it
The extraction tool was broken for a while, so let's make sure this
doesn't happen in the future. Plus we can start enforcing some
formatting details about the specs.

[ --check-alignment added by Rusty ]
2017-01-28 14:10:04 +01:00

8 lines
213 B
YAML

language: python
python:
- "3.4"
- "3.5"
- "3.6"
script:
- (set -e; for i in 0?-*.md; do echo "Extracting $i"; python3 tools/extract-formats.py --message-types --message-fields --check-alignment $i; done)