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
2024-02-29 03:26:29 +00:00

33 lines
No EOL
812 B
YAML

---
kind: pipeline
type: docker
name: Lint on PR
trigger:
event:
- pull_request
steps:
- name: python3.8
image: python:3.8-slim-bullseye
commands:
- "python3 --version"
- "pip3 install yamllint"
- "yamllint --version"
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'
- name: python3.9
image: python:3.9-slim-bullseye
commands:
- "python3 --version"
- "pip3 install yamllint"
- "yamllint --version"
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'
- name: python3.10
image: python:3.10-slim-bullseye
commands:
- "python3 --version"
- "pip3 install yamllint"
- "yamllint --version"
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'