https://github.com/alex-oleshkevich/setup-ansible
Workflow action to setup Ansible
https://github.com/alex-oleshkevich/setup-ansible
Last synced: about 2 months ago
JSON representation
Workflow action to setup Ansible
- Host: GitHub
- URL: https://github.com/alex-oleshkevich/setup-ansible
- Owner: alex-oleshkevich
- License: mit
- Created: 2024-03-07T18:30:44.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-06-13T18:37:41.000Z (11 months ago)
- Last Synced: 2025-01-24T16:44:37.315Z (3 months ago)
- Size: 3.91 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-ansible
A GitHub Workflow action to set up Ansible.# Usage
```yaml
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Install Ansible"
uses: alex-oleshkevich/setup-ansible@VERSION
with:
version: "9.3.0"- name: "Print Ansible version"
run: ansible-playbook --version```