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 4e45980 commit fc3dbc2Copy full SHA for fc3dbc2
.github/workflows/lint.yml
@@ -27,8 +27,14 @@ jobs:
27
steps:
28
# Important: This sets up your GITHUB_WORKSPACE environment variable
29
- uses: actions/checkout@v4
30
+ - name: Set up Python 3.11
31
+ uses: actions/setup-python@v6
32
+ with:
33
+ python-version: 3.11
34
+ - name: Install ansible-lint
35
+ run: python -m pip install ansible-lint
36
- name: Run ansible-lint
- uses: ansible/ansible-lint@main
37
+ run: ansible-lint
38
- name: Upload SARIF file
39
uses: github/codeql-action/upload-sarif@v3
40
with:
0 commit comments