1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_ntp.git synced 2024-08-16 12:59:49 +02:00
ansible_role_ntp/.github/workflows/ansible-linting-check.yml

24 lines
473 B
YAML
Raw Normal View History

2021-03-12 13:26:34 +01:00
---
name: Ansible Lint check
# yamllint disable-line rule:truthy
2023-10-23 16:49:04 +02:00
on: [push, pull_request]
2021-03-12 13:26:34 +01:00
jobs:
build:
2023-10-23 16:49:04 +02:00
name: Ansible Lint
2021-03-12 13:26:34 +01:00
runs-on: ubuntu-latest
steps:
2023-10-23 16:49:04 +02:00
- name: Checkout git repo
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
2021-03-12 13:26:34 +01:00
2023-10-23 16:49:04 +02:00
- name: Run ansible-lint
uses: ansible-actions/ansible-lint-action@v1.0.2
2021-03-12 13:26:34 +01:00
with:
2023-10-23 16:49:04 +02:00
target: "./"
collections_yml: "requirements.yml"