There was an error while loading. Please reload this page.
1 parent 89b6273 commit cb4fa61Copy full SHA for cb4fa61
1 file changed
.github/workflows/line-length.yml
@@ -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