2021-01-16 15:36:41 -06:00
|
|
|
---
|
2021-01-16 15:21:05 -06:00
|
|
|
name: Ansible Lint check
|
|
|
|
|
2021-01-27 08:13:02 -06:00
|
|
|
# yamllint disable-line rule:truthy
|
2021-01-16 15:21:05 -06:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2021-01-16 15:36:41 -06:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Lint Ansible Playbook
|
|
|
|
uses: ansible/ansible-lint-action@master
|
|
|
|
with:
|
|
|
|
targets: "."
|
|
|
|
# [required]
|
|
|
|
# Paths to ansible files (i.e., playbooks, tasks, handlers etc..)
|
|
|
|
args: ""
|
|
|
|
# [optional]
|