mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 21:03:29 +01:00
add lint option
This commit is contained in:
parent
3fb34ad9de
commit
a6e30dec3b
1 changed files with 17 additions and 0 deletions
17
.github/workflows/ansible-lint.yml
vendored
Normal file
17
.github/workflows/ansible-lint.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Ansible Lint # feel free to pick your own name
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Lint Ansible Playbook
|
||||
uses: ansible/ansible-lint-action@master
|
||||
with:
|
||||
targets: "tests/test.yml"
|
||||
args: ""
|
Loading…
Reference in a new issue