We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96c108e commit 83cd290Copy full SHA for 83cd290
1 file changed
.github/workflows/test-playbook.sh
@@ -23,11 +23,15 @@ then
23
EOF
24
fi
25
26
+# Install uv
27
+curl -LsSf https://astral.sh/uv/install.sh | sh
28
+source $HOME/.local/bin/env
29
+
30
# Install the Ansible dependencies.
-ansible-galaxy role install -r requirements.yml -p ./roles
31
+uvx --from ansible-core ansible-galaxy role install -r requirements.yml -p ./roles
32
33
# Print our site-specific configuration file, for debugging purposes.
34
cat inventory/local_site_specific_vars.yml
35
36
# Run the playbook!
-ansible-playbook --connection=local -e @inventory/local_site_specific_vars.yml -v ${playbook}
37
+uvx --from ansible-core ansible-playbook --connection=local -e @inventory/local_site_specific_vars.yml -v ${playbook}
0 commit comments