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 40f412a commit c4f80c0Copy full SHA for c4f80c0
.github/workflows/main.yml
@@ -14,6 +14,16 @@ on:
14
workflow_dispatch:
15
16
jobs:
17
+ lint:
18
+ runs-on: ubuntu-24.04
19
+ steps:
20
+ - name: Check out the repository
21
+ uses: actions/checkout@v4
22
+ - name: Run ansible-lint
23
+ uses: ansible/ansible-lint@v25
24
+ with:
25
+ args: "-c ansible-lint.yml"
26
+
27
encoding:
28
runs-on: ubuntu-24.04
29
steps:
ansible-lint.yml
@@ -0,0 +1,7 @@
1
+# SPDX-FileCopyrightText: 2025 Friedrich von Never <[email protected]>
2
+#
3
+# SPDX-License-Identifier: MIT
4
5
+exclude_paths:
6
+ - .github/ # no Ansible plays in there
7
+ - xmpp2/default.yml # just a list of other files
0 commit comments