diff --git a/.woodpecker.yaml b/.woodpecker.yaml new file mode 100644 index 0000000..7a00e98 --- /dev/null +++ b/.woodpecker.yaml @@ -0,0 +1,13 @@ +--- +labels: + backend: kubernetes +steps: + - name: linting + image: cytopia/yamllint:latest + commands: + - yamllint -f colored -s . +when: + - event: + - push + - manual + - pull_request diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..0453817 --- /dev/null +++ b/.yamllint @@ -0,0 +1,12 @@ +--- +yaml-files: + - '*.yaml' + - '*.yml' + - '.yamllint' + +extends: default + +rules: + line-length: disable + indentation: + indent-sequences: consistent