Compare commits

..

No commits in common. "891538554c47b66273f2205d5bf97a5029425ad8" and "6e9230d7225585008540da3a96087c013958575f" have entirely different histories.

3 changed files with 6 additions and 12 deletions

View File

@ -10,6 +10,3 @@ 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

@ -3,13 +3,13 @@ name: Lint Shell files
on: on:
pull_request: pull_request:
branches: ["*"] branches: ["*"]
types: ["opened", "edited"] types: ["opened","edited"]
workflow_dispatch: {} 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 install shellcheck
- run: find . -type f -name "*.sh" -exec shellcheck -a {} \; - run: find . -type f -name "*.sh" -exec shellcheck -a {} \;

View File

@ -17,6 +17,3 @@ unittests-helm:
update-helm-dependencies: update-helm-dependencies:
helm dependency update helm dependency update
.PHONY: yamllint
yamllint:
yamllint -c .yamllint .