-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically run the shell script linter `shellcheck` any time a shell script changes. Signed-off-by: Russell Bryant <rbryant@redhat.com>
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Lint shell scripts | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- '**/*.sh' | ||
- '.github/workflows/shellcheck.yml' | ||
- '.github/workflows/actionlint.dockerfile' | ||
pull_request: | ||
branches: | ||
- "main" | ||
paths: | ||
- '**/*.sh' | ||
- '.github/workflows/shellcheck.yml' | ||
- '.github/workflows/actionlint.dockerfile' | ||
|
||
env: | ||
LC_ALL: en_US.UTF-8 | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
shellcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: "Download shellcheck" | ||
run: | | ||
docker build --tag actionlint - < .github/workflows/actionlint.dockerfile | ||
- name: "Check shell scripts" | ||
run: | | ||
docker run --volume="${PWD}:/repo:z" --workdir=/repo --entrypoint /usr/bin/find actionlint \ | ||
/repo -type f -name "*.sh" -exec /usr/local/bin/shellcheck {} + |