lint #4

Merged
kleph merged 4 commits from lint into master 2020-03-25 13:55:36 +01:00
2 changed files with 31 additions and 0 deletions
Showing only changes of commit df16eee712 - Show all commits

View file

@ -1,3 +1,23 @@
---
kind: pipeline
name: lint
steps:
- name: yaml lint
image: cytopia/yamllint
commands:
- yamllint .
- name: docker lint
image: hadolint/hadolint
commands:
- hadolint Dockerfile # ignore pinning version in pip
- name: markdown lint
image: pipelinecomponents/markdownlint:latest
commands:
- mdl --style all --warnings .
---
kind: pipeline
name: build
@ -16,6 +36,8 @@ steps:
event:
exclude:
- pull_request
depends_on:
- lint
---
deploy_commands_alias:

9
.yamllint Normal file
View file

@ -0,0 +1,9 @@
---
extends: default
rules:
indentation:
indent-sequences: consistent
line-length:
max: 170
level: warning