Compare commits

...

3 Commits

Author SHA1 Message Date
891538554c
style(ci): lint action
All checks were successful
check-and-test / check-and-test (pull_request) Successful in 47s
2025-03-31 18:24:30 +02:00
f757aff455
fix(Makefile): add new target 'yamllint' 2025-03-31 18:23:54 +02:00
ba7770fdbd
style(editorconfig): set indent style to tab for Makefiles 2025-03-31 18:23:37 +02:00
3 changed files with 12 additions and 6 deletions

View File

@ -9,4 +9,7 @@ indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
insert_final_newline = false
[Makefile]
indent_style = tab

View File

@ -3,13 +3,13 @@ name: Lint Shell files
on:
pull_request:
branches: ["*"]
types: ["opened","edited"]
types: ["opened", "edited"]
workflow_dispatch: {}
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- run: apt install shellcheck
- run: find . -type f -name "*.sh" -exec shellcheck -a {} \;
- uses: actions/checkout@v4.2.2
- run: apt install shellcheck
- run: find . -type f -name "*.sh" -exec shellcheck -a {} \;

View File

@ -16,4 +16,7 @@ unittests-helm:
.PHONY: helm
update-helm-dependencies:
helm dependency update
.PHONY: yamllint
yamllint:
yamllint -c .yamllint .