Skip to content

Commit

Permalink
Make line length test exclude markdown tables
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeon authored and awoods committed Nov 21, 2024
1 parent d451eaa commit f9d8226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
pip install marko jsonschema
- name: Checks line length
run: |
test `cut -c121- draft/spec/index.md | grep -vx "^$" | wc -l` -eq 0
test `cut -c121- draft/implementation-notes/index.md | grep -vx "^$" | wc -l` -eq 0
test `grep -v "^|" draft/spec/index.md | cut -c121- | grep -vx "^$" | wc -l` -eq 0
test `grep -v "^|" draft/implementation-notes/index.md | cut -c121- | grep -vx "^$" | wc -l` -eq 0
- name: Checks Examples
run: python scripts/check_examples.py

0 comments on commit f9d8226

Please sign in to comment.