Skip to content

Commit

Permalink
added version-info to linter-execution
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Oct 28, 2023
1 parent 6718cc8 commit 729e60e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/autolint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,15 @@ jobs:
shell: bash

- name: Running PyLint
run: pylint --recursive=y .
run: |
pylint --version
pylint --recursive=y .
shell: bash

- name: Running YamlLint
run: yamllint .
run: |
yamllint --version
yamllint .
shell: bash

- name: Preparing collection for AnsibleLint
Expand All @@ -47,5 +51,7 @@ jobs:
shell: bash

- name: Running AnsibleLint
run: ANSIBLE_COLLECTIONS_PATH=/tmp/ansible_lint/collections ansible-lint -c .ansible-lint.yml
run: |
ansible-lint --version
ANSIBLE_COLLECTIONS_PATH=/tmp/ansible_lint/collections ansible-lint -c .ansible-lint.yml
shell: bash

0 comments on commit 729e60e

Please sign in to comment.