helm-actions/.gitea/workflows/shellcheck.yml
Markus Pesch 0b45c6adf1
Some checks failed
commitlint / check-and-test (pull_request) Successful in 28s
Lint Shell files / shellcheck (pull_request) Failing after 1m51s
check-and-test / check-and-test (pull_request) Failing after 1m17s
chore(ci): add shellcheck
2025-03-31 17:48:20 +02:00

19 lines
409 B
YAML

name: Lint Shell files
on:
pull_request:
branches: [ "*" ]
types: [ "opened", "edited" ]
workflow_dispatch: {}
env:
# renovate: datasource=docker depName=koalaman/shellcheck
HELM_VERSION: "v0.10.0"
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 {} \;