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

15 lines
315 B
YAML
Raw Normal View History

2024-02-12 10:33:15 -05:00
kind: pipeline
2024-02-13 00:06:50 -05:00
name: lint
2024-02-12 10:33:15 -05:00
steps:
2024-02-13 00:08:13 -05:00
{{ range .Files }}
{{ if eq .Ext "yml" }}
- name: lint-docker-compose-${{ trimPrefix .Path "./" }}
2024-02-13 00:06:50 -05:00
image: docker/compose:1.29.2
commands:
2024-02-13 00:08:13 -05:00
- cd $(dirname $0)
- docker-compose -f ${{ .Path }} config --quiet
- docker-compose -f ${{ .Path }} config
{{ end }}
{{ end }}