paulbsd-salt/.drone.yml
Paul Lecuq 24500ff074
Some checks failed
continuous-integration/drone/push Build is failing
updated states (lints) / updated .drone.yml
2022-06-10 00:13:19 +02:00

16 lines
302 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: Salt lint
image: python
commands:
- apt-get update -y
- apt-get upgrade -y
- pip3 install salt-lint
- >
'find states -type f -name "*.sls" -print0 |'
' xargs -0 --no-run-if-empty salt-lint'