mirror of
https://gitea.com/gitea/helm-actions.git
synced 2026-04-05 09:10:46 +00:00
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>
15 lines
335 B
YAML
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 {} \;
|