mirror of
https://github.com/lightning/bolts.git
synced 2024-11-19 10:00:04 +01:00
d6e477be43
Editing the previous mess was horrific. I gave up and rewrote using a generator. Changes to output: 1. subtypes and tlvs now handled. 2. The output format now has explicit prefixes, so readers don't have to rely on number of fields to interpret data. 3. Each field is split into type and count; count is empty if there's no '*x'. 4. TLV stream typenames are repeated; TLV record type names are not necessarily unique. 5. The unused offset field is removed. 6. No arguments taken: everything is always printed, and you can grep if you only want some. [ Fixup by <niftynei@gmail.com> ] Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
14 lines
256 B
YAML
14 lines
256 B
YAML
language: python
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- aspell-en
|
|
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
script:
|
|
- (set -e; for i in 0?-*.md; do echo "Extracting $i"; python3 tools/extract-formats.py $i; done)
|
|
- tools/spellcheck.sh --check [0-9][0-9]-*.md
|