2021-03-20 18:25:46 +01:00
|
|
|
---
|
|
|
|
name: Ansible Lint check
|
|
|
|
|
|
|
|
# yamllint disable-line rule:truthy
|
2023-10-23 12:01:19 +02:00
|
|
|
on: [push, pull_request]
|
2021-03-20 18:25:46 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-10-23 12:01:19 +02:00
|
|
|
name: Ansible Lint
|
2021-03-20 18:25:46 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-10-29 22:34:09 +01:00
|
|
|
- name: Checkout git repo
|
2023-10-23 12:01:19 +02:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
fetch-depth: 0
|
2021-03-20 18:25:46 +01:00
|
|
|
|
2023-10-23 12:01:19 +02:00
|
|
|
- name: Run ansible-lint
|
2024-03-21 21:24:25 +01:00
|
|
|
uses: ansible-actions/ansible-lint-action@v1.0.3
|
2021-03-20 18:25:46 +01:00
|
|
|
with:
|
2023-10-23 12:01:19 +02:00
|
|
|
target: "./"
|