mirror of
https://github.com/roles-ansible/ansible_role_acmetool.git
synced 2024-08-16 12:29:49 +02:00
788a64275e
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v2.3.4) Signed-off-by: dependabot[bot] <support@github.com>
28 lines
537 B
YAML
28 lines
537 B
YAML
---
|
|
name: Ansible Lint check
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
pull_request:
|
|
branches: '*'
|
|
schedule:
|
|
- cron: '42 6 * 2,4,6,8,10,12 *'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
- 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]
|