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 80edc38 commit e3f2187Copy full SHA for e3f2187
.github/workflows/test.yml
@@ -375,6 +375,12 @@ jobs:
375
run: |
376
find . -maxdepth 1 -name "*.yml" -not -name "requirements.yml" -not -name "hosts.yml" | xargs -n1 ansible-lint --strict --force-color
377
378
+ - name: Install role and collection dependencies
379
+ if: steps.check_ansible_playbook.outputs.files_exists == 'true'
380
+ run: |
381
+ ansible-galaxy role install --role-file=requirements.yml
382
+ ansible-galaxy collection install --requirements-file=requirements.yml
383
+
384
- name: Run ansible-playbook syntax-check for Ansible playbook
385
if: steps.check_ansible_playbook.outputs.files_exists == 'true'
386
env:
0 commit comments