ansible-playground/.woodpecker.yml

15 lines
404 B
YAML

when:
branch: master
steps:
ansible-lint:
image: alpine/git
commands:
- apk add ansible ansible-lint
- export ANSIBLE_COLLECTION=slococo/playground
- ansible-galaxy collection install -r "$ANSIBLE_COLLECTION"/requirements.yml
- ansible-lint
- ansible-galaxy collection install .
- ansible-playbook "$ANSIBLE_COLLECTION"/playbooks/main.yml --syntax-check