From a1c1848a82681cb0476c77940f6bd16288982c5e Mon Sep 17 00:00:00 2001 From: Matt Reeves Date: Wed, 17 Apr 2024 03:33:13 +0000 Subject: [PATCH] Update .drone.yml --- .drone.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index f8cc867..d54157f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,9 +13,10 @@ steps: - "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' + - '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.10 image: python:3.9-slim-bullseye commands: - "python3 --version" @@ -24,7 +25,7 @@ steps: - '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.12 image: python:3.10-slim-bullseye commands: - "python3 --version"