mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-10 14:24:25 +00:00
Add ansible-lint to CI
Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
parent
a9f53074e1
commit
40e2463752
1 changed files with 15 additions and 0 deletions
15
.github/workflows/ansible-lint.yml
vendored
Normal file
15
.github/workflows/ansible-lint.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
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 roles
|
||||
uses: ansible-community/ansible-lint-action@v6
|
||||
with:
|
||||
path: roles
|
Loading…
Reference in a new issue