Cleanup Ansible Playbooks #41

Open
cyclane wants to merge 13 commits from cleanup-playbooks into main
1 changed files with 5 additions and 3 deletions
Showing only changes of commit 9689da7d11 - Show all commits

View File

@ -31,11 +31,13 @@ jobs:
pip3 install -r requirements.txt
ansible-galaxy collection install community.general community.docker infisical.vault --force
- name: Ansible lint
run: |
ansible-lint infra/**/*playbook.yaml
- name: Check playbooks
run: |
for file in $(find . -wholename "*/infra/*playbook.yaml" -type f); do
ansible-playbook --inventory ./inventory --syntax-check "$file"
done
ansible-playbook --inventory ./inventory --syntax-check infra/**/*playbook.yaml
- name: Get changed playbooks
id: files