1
0
mirror of https://github.com/lightning/bolts.git synced 2024-11-19 01:50:03 +01:00

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 ]
This commit is contained in:
Christian Decker 2017-01-13 12:35:16 +01:00
parent 347ce303ce
commit d9f98569cd

7
.travis.yml Normal file
View File

@ -0,0 +1,7 @@
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)