fix(Makefile): add yamllint as dedicated target
All checks were successful
changelog / changelog (push) Successful in 12s
check-and-test / check-and-test (push) Successful in 34s

This commit is contained in:
2025-11-05 19:02:26 +01:00
parent 064e51d0c2
commit aa3cf45660
2 changed files with 9 additions and 3 deletions

View File

@@ -10,3 +10,6 @@ end_of_line = lf
charset = utf-8 charset = utf-8
trim_trailing_whitespace = false trim_trailing_whitespace = false
insert_final_newline = false insert_final_newline = false
[Makefile]
indent_style = tab

View File

@@ -20,7 +20,10 @@ unittests-helm:
unittests-bash: unittests-bash:
./unittests/bash/bats/bin/bats --pretty ./unittests/bash/tests/**/*.bats ./unittests/bash/bats/bin/bats --pretty ./unittests/bash/tests/**/*.bats
.PHONY: helm .PHONY: update-helm-dependencies
update-helm-dependencies: update-helm-dependencies:
helm dependency update helm dependency update
.PHONY: yamllint
yamllint:
yamllint -c .yamllint .