mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-12 23:17:06 +00:00
19 lines
422 B
YAML
19 lines
422 B
YAML
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: check ansible syntax
|
|
image: plugins/ansible:3
|
|
settings:
|
|
playbook: nas.yml
|
|
galaxy: requirements.yml
|
|
inventory: tests/inventories/integration_testing/inventory
|
|
syntax_check: true
|
|
|
|
- name: lint
|
|
image: python:3
|
|
commands:
|
|
- pip3 install ansible yamllint==1.27.1 ansible-lint==6.5
|
|
- ansible-lint nas.yml
|
|
- yamllint .
|