mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-26 18:25:05 +00:00
20 lines
404 B
YAML
20 lines
404 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 .
|