You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
archlinux-ansible/.drone.yml

27 lines
518 B

3 years ago
---
kind: pipeline
type: docker
name: Lint
steps:
- name: yamllint
image: cytopia/yamllint
commands:
3 years ago
- yamllint --strict .
3 years ago
- name: ansible-playbook syntax check
image: cytopia/ansible
commands:
- ansible-galaxy install -r requirements.yml
- ansible-playbook main.yml --syntax-check
- name: ansible-lint
image: cytopia/ansible-lint
commands:
- ansible-lint main.yml
---
kind: signature
hmac: 89a66133287b8dbf91e2af18656fc933218ed587f08a6bc73a0675b17de61b6c
...