mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
471 B
25 lines
471 B
name: shellcheck
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "dev-v3"
|
|
pull_request:
|
|
branches:
|
|
- "main"
|
|
- "dev-v3"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # pin@v6.0.2
|
|
- name: Run ShellCheck
|
|
run: |
|
|
find . -type f -name "*.sh" ! -path "./.git/*" -exec shellcheck {} +
|