Merge branch 'main' into renovate/lscr.io-linuxserver-sabnzbd
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
This commit is contained in:
commit
e0f9ab4ccc
1 changed files with 6 additions and 4 deletions
10
.drone.yml
10
.drone.yml
|
@ -1,4 +1,3 @@
|
||||||
---
|
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: Lint on PR
|
name: Lint on PR
|
||||||
|
@ -14,7 +13,8 @@ steps:
|
||||||
- "python3 --version"
|
- "python3 --version"
|
||||||
- "pip3 install yamllint"
|
- "pip3 install yamllint"
|
||||||
- "yamllint --version"
|
- "yamllint --version"
|
||||||
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'
|
- '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.9
|
- name: python3.9
|
||||||
image: python:3.9-slim-bullseye
|
image: python:3.9-slim-bullseye
|
||||||
|
@ -22,7 +22,8 @@ steps:
|
||||||
- "python3 --version"
|
- "python3 --version"
|
||||||
- "pip3 install yamllint"
|
- "pip3 install yamllint"
|
||||||
- "yamllint --version"
|
- "yamllint --version"
|
||||||
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'
|
- '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
|
- name: python3.10
|
||||||
image: python:3.10-slim-bullseye
|
image: python:3.10-slim-bullseye
|
||||||
|
@ -30,4 +31,5 @@ steps:
|
||||||
- "python3 --version"
|
- "python3 --version"
|
||||||
- "pip3 install yamllint"
|
- "pip3 install yamllint"
|
||||||
- "yamllint --version"
|
- "yamllint --version"
|
||||||
- 'yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" .'
|
- '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}}}" {} +'
|
||||||
|
|
Reference in a new issue