Initial Commit
Ansible Linter / ansible-lint (push) Failing after 18s
Lint Markdown files / markdown-lint (push) Successful in 5s

This commit is contained in:
2026-03-02 18:48:41 +01:00
commit e62397b06f
40 changed files with 1147 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
name: Ansible Linter
on:
pull_request:
types: [ "opened", "reopened", "synchronize" ]
push:
branches: [ '**' ]
tags-ignore: [ '**' ]
jobs:
ansible-lint:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- name: Run ansible-lint
uses: ansible/ansible-lint@v26.2.0
with:
args: "--config-file .ansible-lint"
setup_python: "true"