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
813 B
YAML
Raw Normal View History

2024-02-14 18:32:37 -05:00
---
kind: pipeline
type: docker
2024-02-14 19:02:55 -05:00
name: Lint on PR
trigger:
event:
- pull_request
2024-02-14 18:32:37 -05:00
steps:
2024-02-14 19:02:55 -05:00
- name: python3.8
image: python:3.8-slim-bullseye
commands:
- "python3 --version"
- "pip3 install yamllint"
- "yamllint --version"
2024-02-15 22:06:11 -05:00
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'
2024-02-14 19:02:55 -05:00
- name: python3.9
image: python:3.9-slim-bullseye
commands:
- "python3 --version"
- "pip3 install yamllint"
- "yamllint --version"
2024-02-15 22:10:10 -05:00
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'
2024-02-14 19:02:55 -05:00
- name: python3.10
image: python:3.10-slim-bullseye
2024-02-14 18:32:37 -05:00
commands:
2024-02-14 19:02:55 -05:00
- "python3 --version"
- "pip3 install yamllint"
- "yamllint --version"
2024-02-15 22:10:10 -05:00
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'