An open API service indexing awesome lists of open source software.

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

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

```