We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0d814ad + f9d8226 commit af2469aCopy full SHA for af2469a
.github/workflows/test.yml
@@ -16,7 +16,7 @@ jobs:
16
pip install marko jsonschema
17
- name: Checks line length
18
run: |
19
- test `cut -c121- draft/spec/index.md | grep -vx "^$" | wc -l` -eq 0
20
- 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
21
- name: Checks Examples
22
run: python scripts/check_examples.py
0 commit comments