We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a479ae commit fb6425cCopy full SHA for fb6425c
2 files changed
.ansible-lint
@@ -6,3 +6,4 @@ skip_list:
6
exclude_paths:
7
- "tests/dast"
8
- "*collections*"
9
+ - ".venv"
.github/workflows/ansible-lint.yaml .github/workflows/pull-request.yml.github/workflows/ansible-lint.yaml renamed to .github/workflows/pull-request.yml
@@ -1,14 +1,19 @@
1
-name: ansible-lint
+---
2
+name: Pull Request Validation
3
on:
4
pull_request:
5
branches:
- "*"
+
jobs:
- build:
+ ansible-lint:
10
name: Ansible Lint
11
runs-on: ubuntu-latest
12
steps:
13
- name: Code Checkout
- uses: actions/checkout@v4
14
+ uses: actions/checkout@v5
15
16
- name: Run ansible-lint
- uses: ansible/ansible-lint@main
17
+ uses: ansible/ansible-lint@v25
18
+ with:
19
+ args: "-v"
0 commit comments