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 5cdf393 commit bb6597eCopy full SHA for bb6597e
.github/workflows/coding-standards.yml
@@ -66,3 +66,20 @@ jobs:
66
globs: |
67
**/*.md
68
!CHANGELOG.md
69
+
70
+ ansible-linting:
71
+ timeout-minutes: 4
72
+ runs-on: ubuntu-latest
73
+ concurrency:
74
+ cancel-in-progress: true
75
+ group: ansible-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
76
+ steps:
77
+ - name: 📦 Check out the codebase
78
+ uses: actions/checkout@v4.1.7
79
80
+ - name: 🧐 Lint Ansible files
81
+ uses: ansible/ansible-lint@v24.7.0
82
+ with:
83
+ args: '-c .github/.ansible-lint.yml'
84
+ env:
85
+ YAML_CONFIG_PATH: '.github/.yamllint.yaml'
0 commit comments