Ansible Lint check #228
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Ansible Lint check | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: 15 12 * * 1 # At 12:15 on Monday. | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint Ansible Playbook | |
uses: ansible/ansible-lint-action@main | |
with: | |
entryPoint: local.yml | |
# [required] | |
# Paths to ansible files (i.e., playbooks, tasks, handlers etc..) | |
path: '' | |
# [optional] |