Merge branch 'main' into renovate/docker.mafyuh.xyz-sonatype-nexus3-3.x
Some checks failed
continuous-integration/drone/pr Build is failing
Lint on PR / Lint with Python 3.8 (pull_request) Failing after 26s
Lint on PR / Lint with Python 3.9 (pull_request) Failing after 3s
Lint on PR / Lint with Python 3.10 (pull_request) Failing after 3s

This commit is contained in:
Matt Reeves 2024-05-28 00:04:45 +00:00
commit d77fe08933

View file

@ -9,70 +9,58 @@ jobs:
name: Lint with Python 3.8
runs-on: docker
container:
image: docker.mafyuh.xyz/nikolaik/python-nodejs:python3.8-nodejs18-slim
image: docker.mafyuh.xyz/python:3.8-slim-bullseye
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Set up Python 3.8
run: |
python3 --version
run: python3 --version
- name: Install yamllint
run: |
pip3 install yamllint
run: pip3 install yamllint
- name: Show yamllint version
run: |
yamllint --version
run: yamllint --version
- name: Lint .yml files
run: |
find . -name "*.yml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +
- name: Lint .yaml files
run: |
find . -name "*.yaml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +
lint-python39:
name: Lint with Python 3.9
runs-on: docker
container:
image: docker.mafyuh.xyz/nikolaik/python-nodejs:python3.9-nodejs18-slim
image: docker.mafyuh.xyz/python:3.9-slim-bullseye
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Set up Python 3.9
run: |
python3 --version
run: python3 --version
- name: Install yamllint
run: |
pip3 install yamllint
run: pip3 install yamllint
- name: Show yamllint version
run: |
yamllint --version
run: yamllint --version
- name: Lint .yml files
run: |
find . -name "*.yml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +
- name: Lint .yaml files
run: |
find . -name "*.yaml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +
lint-python310:
name: Lint with Python 3.10
runs-on: docker
container:
image: docker.mafyuh.xyz/nikolaik/python-nodejs:python3.10-nodejs18-slim
image: docker.mafyuh.xyz/python:3.10-slim-bullseye
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Set up Python 3.10
run: |
python3 --version
run: python3 --version
- name: Install yamllint
run: |
pip3 install yamllint
run: pip3 install yamllint
- name: Show yamllint version
run: |
yamllint --version
run: yamllint --version
- name: Lint .yml files
run: |
find . -name "*.yml" ! -name ".drone.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} +
- name: Lint .yaml files
run: |
find . -name "*.yaml" ! -name ".drone.yml" -exec 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}}}" {} +