Files
ansible-role-unix-users/.gitea/workflows/ansible-linters.yaml
CSRBot 69d40a7779
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 3s
Lint Markdown files / markdown-lint (push) Failing after 3s
Ansible Linter / ansible-lint (pull_request) Failing after 3s
Lint Markdown files / markdown-lint (pull_request) Failing after 3s
chore(deps): update actions/checkout action to v5
2025-08-11 13:04:07 +00:00

21 lines
404 B
YAML

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@v5
- name: Run ansible-lint
uses: ansible/ansible-lint@v25.7.0
with:
args: "--config-file .ansible-lint"
setup_python: "true"