helm-actions/.gitea/workflows/shellcheck.yml
Markus Pesch 421f3fcbc5
Some checks failed
Lint Shell files / shellcheck (pull_request) Failing after 9s
check-and-test / check-and-test (pull_request) Successful in 47s
chore(ci): change types to oopened, reopened and synchronize
2025-03-31 18:28:32 +02:00

16 lines
337 B
YAML

name: Lint Shell files
on:
pull_request:
branches: ["*"]
types: ["opened", "reopened", "synchronize"]
workflow_dispatch: {}
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 {} \;