We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2467cc7 commit 1ee0dafCopy full SHA for 1ee0daf
.github/workflows/yaml-lint.yml
@@ -0,0 +1,24 @@
1
+name: YAML Lint
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - "**/*.yml"
7
+ - "**/*.yaml"
8
+ push:
9
10
11
12
+ workflow_dispatch:
13
14
+jobs:
15
+ yaml-lint:
16
+ name: Validate YAML files
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v4
21
+ - name: Install yamllint
22
+ run: python3 -m pip install yamllint
23
+ - name: Run yamllint
24
+ run: python3 -m yamllint .
.yamllint
@@ -0,0 +1,5 @@
+extends: default
+rules:
+ line-length:
+ max: 120
+ level: error
0 commit comments