Skip to content

Commit cb4fa61

Browse files
committed
CI: added line length validation
1 parent 89b6273 commit cb4fa61

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/line-length.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Validate I-D line length
2+
on: [push]
3+
4+
jobs:
5+
validate_line_length:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v4
10+
11+
- name: Validate I-D line length
12+
run: grep -nE '.{73,}' IETF-RFC.md | grep ' ' && exit -1
13+

0 commit comments

Comments
 (0)