This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
Auto-Homelab/.drone.yml

11 lines
359 B
YAML
Raw Normal View History

2024-02-14 18:32:37 -05:00
---
kind: pipeline
type: docker
2024-02-14 18:37:56 -05:00
name: default
2024-02-14 18:32:37 -05:00
steps:
2024-02-14 18:37:56 -05:00
- name: test
image: geerlingguy/docker-ubuntu1804-ansible:testing
2024-02-14 18:32:37 -05:00
commands:
2024-02-14 18:37:56 -05:00
- "find . -maxdepth 1 -name '*.yml' | sort | grep -v '.drone.yml' | xargs ansible-playbook --syntax-check --list-tasks"
- "find . -maxdepth 1 -name '*.yml' | sort | grep -v '.drone.yml' | xargs ansible-lint"