Workflow action to setup Ansible
Find a file
Alex Oleshkevich ec02aeac42
Merge pull request #4 from choutos/feat/flex-versions
Support flexible version specifiers
2025-11-07 12:05:51 +01:00
.github/workflows add docs 2024-03-07 19:38:37 +01:00
action.yml Support flexible version specifiers 2025-11-07 10:14:25 +01:00
LICENSE Initial commit 2024-03-07 19:30:44 +01:00
README.md Update README.md 2024-04-26 22:48:00 +02:00

setup-ansible

A GitHub Workflow action to set up Ansible.

Usage

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