Files
helm-actions/.gitea/workflows/shellcheck.yml
Renovate Bot 2aaf69b2cd
Some checks failed
changelog / changelog (push) Failing after 19s
check-and-test / check-and-test (push) Failing after 11s
chore(deps): update actions/checkout action to v6 (#85)
Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/85
Co-authored-by: Renovate Bot <renovate-bot@gitea.com>
Co-committed-by: Renovate Bot <renovate-bot@gitea.com>
2025-12-04 16:33:38 +00:00

15 lines
335 B
YAML

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