diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 84d025e..631e23a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -75,6 +75,11 @@ jobs: key: ${{env.SSH_PRIVATE_KEY}} known_hosts: ${{env.SSH_KNOWN_HOSTS}} directory: test + configuration: | + [defaults] + callbacks_enabled = ansible.posix.profile_tasks, ansible.posix.timer + stdout_callback = yaml + nocows = false vault_password: test requirements: requirements.yml inventory: | @@ -97,6 +102,7 @@ jobs: with: playbook: playbook.yml directory: test + configuration: ansible.cfg requirements: requirements.yml options: --inventory hosts - name: With requirements bundle diff --git a/test/ansible.cfg b/test/ansible.cfg new file mode 100644 index 0000000..2535c29 --- /dev/null +++ b/test/ansible.cfg @@ -0,0 +1,4 @@ +[defaults] +callbacks_enabled = ansible.posix.profile_tasks, ansible.posix.timer +stdout_callback = yaml +nocows = false