mirror of
https://github.com/roles-ansible/ansible_role_restic.git
synced 2024-12-11 23:41:32 +01:00
24 lines
358 B
YAML
24 lines
358 B
YAML
|
---
|
||
|
name: Ansible Lint check
|
||
|
|
||
|
# yamllint disable-line rule:truthy
|
||
|
on:
|
||
|
push:
|
||
|
branches: '*'
|
||
|
pull_request:
|
||
|
branches: '*'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Lint Ansible Playbook
|
||
|
uses: ansible/ansible-lint-action@v6
|
||
|
with:
|
||
|
targets: "."
|
||
|
args: ""
|