Merge pull request #158 from 0xFelix/ansible-lint-exclude

fix(ci): Exclude ansible-compat's new cache location
This commit is contained in:
kubevirt-bot
2025-01-15 14:42:46 +01:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -79,7 +79,9 @@ jobs:
- name: Run ansible-lint - name: Run ansible-lint
run: | run: |
ansible-lint --version ansible-lint --version
ansible-lint -v # Remove --exclude flag once ansible-lint was updated to ignore ansible-compat's new cache location
# See https://github.com/ansible/ansible-lint/issues/4477
ansible-lint -v --exclude .cache .ansible
working-directory: ${{ env.collection_dir }} working-directory: ${{ env.collection_dir }}
- name: Run shellcheck - name: Run shellcheck

1
.gitignore vendored
View File

@@ -43,6 +43,7 @@ htmlcov/
.nox/ .nox/
.coverage .coverage
.coverage.* .coverage.*
.ansible
.cache .cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml