2023-04-25 16:25:50 +02:00
|
|
|
---
|
|
|
|
name: Ansible Lint check
|
|
|
|
|
|
|
|
# yamllint disable-line rule:truthy
|
2023-07-19 19:36:11 +02:00
|
|
|
on: [push, pull_request]
|
2023-04-25 16:25:50 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-07-19 19:36:11 +02:00
|
|
|
name: Ansible Lint
|
2023-04-25 16:25:50 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: 'checkout git repo'
|
|
|
|
uses: actions/checkout@v3
|
2023-07-19 19:36:11 +02:00
|
|
|
with:
|
|
|
|
lfs: true
|
|
|
|
submodules: false
|
|
|
|
fetch-depth: 0
|
2023-04-25 16:25:50 +02:00
|
|
|
|
|
|
|
- name: 'Lint Ansible Playbook'
|
|
|
|
uses: ansible/ansible-lint-action@v6
|
|
|
|
with:
|
2023-07-19 19:36:11 +02:00
|
|
|
path: "."
|