7 Commits

Author SHA1 Message Date
fe652d335c chore(ci): remove workflow_dispatch
All checks were successful
Lint Shell files / shellcheck (pull_request) Successful in 25s
check-and-test / check-and-test (pull_request) Successful in 46s
2025-03-31 22:08:00 +02:00
bd3afb64c4 chore(ci): update apt packages and proceed installation non-interactively
All checks were successful
Lint Shell files / shellcheck (pull_request) Successful in 25s
check-and-test / check-and-test (pull_request) Successful in 47s
2025-03-31 18:31:15 +02:00
421f3fcbc5 chore(ci): change types to oopened, reopened and synchronize
Some checks failed
Lint Shell files / shellcheck (pull_request) Failing after 9s
check-and-test / check-and-test (pull_request) Successful in 47s
2025-03-31 18:28:32 +02:00
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
6e9230d722 style(ci): remove obsolete spaces
Some checks failed
check-and-test / check-and-test (pull_request) Failing after 48s
2025-03-31 18:18:59 +02:00
3 changed files with 13 additions and 8 deletions

View File

@ -9,4 +9,7 @@ indent_size = 2
end_of_line = lf 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

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

View File

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