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

34 lines
1.4 KiB
YAML
Raw Normal View History

2024-02-28 21:53:17 -05:00
kind: pipeline
type: docker
name: Lint on PR
trigger:
event:
- pull_request
steps:
2024-02-28 22:26:29 -05:00
- name: python3.8
2024-02-28 21:53:17 -05:00
image: python:3.8-slim-bullseye
commands:
2024-02-28 22:26:29 -05:00
- "python3 --version"
2024-02-28 21:53:17 -05:00
- "pip3 install yamllint"
- "yamllint --version"
2024-04-15 14:28:56 -04:00
- 'for file in $(git diff --name-only $DRONE_COMMIT_BEFORE $DRONE_COMMIT_AFTER); do if [[ $file == *"docker-compose.yml"* ]]; then parent_dir=$(dirname "$file"); cd "$parent_dir"; yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" "$(basename "$file")"; cd -; fi; done'
2024-02-28 21:53:17 -05:00
- name: python3.9
image: python:3.9-slim-bullseye
commands:
- "python3 --version"
- "pip3 install yamllint"
- "yamllint --version"
2024-02-29 04:17:49 -05:00
- 'find . -name "*.yml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +'
- 'find . -name "*.yaml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +'
2024-02-28 21:53:17 -05:00
- name: python3.10
image: python:3.10-slim-bullseye
commands:
- "python3 --version"
- "pip3 install yamllint"
- "yamllint --version"
2024-02-29 04:17:49 -05:00
- 'find . -name "*.yml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +'
2024-03-01 10:36:50 -05:00
- 'find . -name "*.yaml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +'