2021-01-18 10:47:52 +01:00
|
|
|
---
|
2020-08-28 14:01:22 +02:00
|
|
|
name: Ansible Lint check
|
|
|
|
|
2021-01-18 10:47:52 +01:00
|
|
|
# yamllint disable-line rule:truthy
|
2023-07-31 16:52:24 +02:00
|
|
|
on: [push, pull_request]
|
2020-08-28 14:01:22 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-07-31 16:52:24 +02:00
|
|
|
name: Ansible Lint
|
2020-08-28 14:01:22 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-10-28 00:16:35 +02:00
|
|
|
- name: Checkout git repo
|
|
|
|
uses: actions/checkout@v4
|
2023-07-31 16:52:24 +02:00
|
|
|
with:
|
2023-10-28 00:16:35 +02:00
|
|
|
submodules: true
|
2023-07-31 16:52:24 +02:00
|
|
|
fetch-depth: 0
|
2020-08-28 14:01:22 +02:00
|
|
|
|
2023-10-05 22:50:28 +02:00
|
|
|
- name: Run ansible-lint
|
2023-10-24 00:22:25 +02:00
|
|
|
uses: ansible-actions/ansible-lint-action@v1.0.2
|
2021-01-18 10:47:52 +01:00
|
|
|
with:
|
2023-10-05 22:50:28 +02:00
|
|
|
target: "./"
|