Files
ansible/.gitea/workflows/lint.yml
VC 995f6374ef
Some checks failed
ansible-lint / lint-everything (push) Failing after 0s
🚨: fix lint for Ansible Vault
2025-03-26 13:12:21 +01:00

21 lines
478 B
YAML

---
name: ansible-lint
on: # yamllint disable-line rule:truthy
- push
jobs:
lint-everything:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run yamllint
uses: frenck/action-yamllint@v1
- name: Create fake ansible-vault
runs: touch ~/.ansible-vault
- name: Run ansible-lint
uses: ansible/ansible-lint@main
with:
requirements_file: "requirements.yml"