Fix Ansible Install
All checks were successful
Ansible Lint / build (push) Successful in 1m13s

This commit is contained in:
Benjamin Hays 2024-10-07 19:17:34 -04:00
parent 206b1d1509
commit 667c805b58

View File

@ -7,7 +7,10 @@ jobs:
steps:
- name: Install Ansible-Lint
run: |
apt install -y python3-pip;pip3 install ansible-dev-tools
apt update -y
apt install python3-pip -y
python3 -m pip install ansible
python3 -m pip install ansible-lint
- name: Checkout
uses: actions/checkout@v3
with: