Skip to content

Commit 7d49577

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

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/line-length.yml

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

0 commit comments

Comments
 (0)