Compare commits
No commits in common. "3ee2cb2b2a3821ba4efc83f9b0c694e7a999825c" and "48f9e4f6065b918c5edda1cbdf00e8a5aa8e933b" have entirely different histories.
3ee2cb2b2a
...
48f9e4f606
1 changed files with 10 additions and 2 deletions
12
.drone.yml
12
.drone.yml
|
@ -10,6 +10,14 @@ steps:
|
|||
- name: lint_docker_compose
|
||||
image: python:3.8-slim-bullseye
|
||||
commands:
|
||||
- "pip3 install yamllint"
|
||||
- "yamllint --version"
|
||||
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" ./*.yml'
|
||||
|
||||
- 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}}}" .'
|
||||
|
@ -36,7 +44,7 @@ steps:
|
|||
commands:
|
||||
- "pip3 install yamllint"
|
||||
- "yamllint --version"
|
||||
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" arrs/*.yml'
|
||||
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" ./arr/*.yml'
|
||||
when:
|
||||
condition:
|
||||
- change_match:
|
||||
|
@ -48,7 +56,7 @@ steps:
|
|||
commands:
|
||||
- "pip3 install yamllint"
|
||||
- "yamllint --version"
|
||||
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" downloaders/*.yml'
|
||||
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" ./downloaders/*.yml'
|
||||
when:
|
||||
condition:
|
||||
- change_match:
|
||||
|
|
Reference in a new issue