mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 23:25:28 +01:00
12 lines
332 B
YAML
12 lines
332 B
YAML
# .github/workflows/ansible-lint.yml
|
|
name: ansible-lint
|
|
"on":
|
|
pull_request:
|
|
branches: ["main", "stable", "release/v*"]
|
|
jobs:
|
|
build:
|
|
name: Ansible Lint # Naming the build is important to use it as a status check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run ansible-lint
|
|
uses: ansible/ansible-lint@main
|