We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28c0905 commit de304c3Copy full SHA for de304c3
.github/workflows/maven_build.yml
@@ -7,6 +7,9 @@ jobs:
7
runs-on: ubuntu-latest
8
9
steps:
10
+ - name: Install yamllint
11
+ run: sudo apt update && sudo apt install -y yamllint
12
+
13
- name: Checkout current state of the repo
14
uses: actions/checkout@v4
15
@@ -27,3 +30,6 @@ jobs:
27
30
with:
28
31
name: kiriSMP_${{ github.sha }}
29
32
path: target/ksmpplugin-*.jar
33
34
+ - name: Lint emitted YAML files
35
+ run: 'yamllint -d "{document-start: disable}" target/classes/*.yml'
0 commit comments