1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_linux_desktop_setup.git synced 2024-09-14 19:54:51 +02:00
ansible_linux_desktop_setup/.github/workflows/ansible-linting-check.yml

24 lines
480 B
YAML
Raw Permalink Normal View History

---
name: Ansible Lint check
# yamllint disable-line rule:truthy
2023-08-01 19:07:39 +02:00
on: [push, pull_request]
jobs:
build:
2023-08-01 19:07:39 +02:00
name: Ansible Lint
runs-on: ubuntu-latest
steps:
2024-04-10 15:35:29 +02:00
- name: Checkout git repo
uses: actions/checkout@v4
2023-04-21 13:55:27 +02:00
with:
submodules: true
fetch-depth: 0
2023-10-05 21:16:04 +02:00
- name: Run ansible-lint
uses: ansible-actions/ansible-lint-action@v1.0.3
with:
2024-04-10 15:35:29 +02:00
target: "./"
python_dependency_file: 'requirements.txt'