Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 659 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 659 Bytes

HLV Linting Image

What does it do?

How do I use this image?

In your .gitlab-ci.yml, call this image and use the tools with the appropriate arguments.

lint:
  image: registry.hlv.inside/cicd-tools/hlv-linter:latest
  stage: lint
  script:
    - yamllint /${CI_PROJECT_PATH}/*.yaml /${CI_PROJECT_PATH}/*.yml
  tags:
    - kubernetes
  only:
    - merge_requests
  allow_failure: true