34 lines
No EOL
1.4 KiB
YAML
34 lines
No EOL
1.4 KiB
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"
|
|
- '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'
|
|
|
|
- name: python3.9
|
|
image: python:3.9-slim-bullseye
|
|
commands:
|
|
- "python3 --version"
|
|
- "pip3 install yamllint"
|
|
- "yamllint --version"
|
|
- '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}}}" {} +'
|
|
|
|
- name: python3.10
|
|
image: python:3.10-slim-bullseye
|
|
commands:
|
|
- "python3 --version"
|
|
- "pip3 install yamllint"
|
|
- "yamllint --version"
|
|
- '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}}}" {} +' |