homelab-automation/.gitea/workflows/ansible-lint.yml
Benjamin Hays c403578372
Some checks failed
Ansible Deploy / deploy (Ansible/playbooks/debian.yml) (push) Successful in 2m4s
Ansible Deploy / deploy (Ansible/playbooks/proxmox.yml) (push) Failing after 59s
Ansible Lint / build (push) Successful in 33s
reorganize entire ansible folder and related misc edits
2024-10-12 22:34:48 -04:00

19 lines
458 B
YAML

# .gitea/workflows/ansible-lint.yaml
name: Ansible Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
steps:
- name: Install Ansible-Lint
run: |
apt update -y
apt install python3-pip -y
python3 -m pip install ansible-lint
- name: Checkout
uses: actions/checkout@v3
- name: Ansible-Lint
run: |
ansible-lint ./Ansible