2024-09-30 04:46:35 +00:00
|
|
|
name: Ansible Linting
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
|
|
|
|
jobs:
|
2024-09-30 04:49:06 +00:00
|
|
|
ansible-lint:
|
2024-09-30 04:46:35 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: shockrah/ansible
|
|
|
|
steps:
|
2024-09-30 04:49:06 +00:00
|
|
|
- name: Checkout repo content
|
2024-09-30 04:49:49 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-09-30 04:46:35 +00:00
|
|
|
- run: ansible-lint
|
|
|
|
working-directory: ansible/
|
|
|
|
|