mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2025-09-16 21:26:27 +02:00
Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d586102c11 | ||
![]() |
02daeb3604 | ||
![]() |
fcee962fee | ||
![]() |
c489c81f79 | ||
![]() |
73cbb64041 | ||
![]() |
c7d4e499f1 | ||
![]() |
7ee62c0418 | ||
![]() |
2394c9008b | ||
![]() |
637bb438ec | ||
![]() |
2f2aa0d97f | ||
![]() |
c79c26d324 | ||
![]() |
35d6c4c933 | ||
![]() |
142c6d53df | ||
![]() |
06cf1c7f5d |
1
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
1
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
blank_issues_enabled: false
|
24
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
24
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
labels: "Feature Request"
|
||||
---
|
||||
|
||||
## Checklist
|
||||
|
||||
- [ ] This Feature Request only contains 1 request (if you have multiple open multiple feature requests).
|
||||
|
||||
## The idea
|
||||
|
||||
A good description of what you are suggesting.
|
||||
|
||||
## Implementation
|
||||
|
||||
How do you see this being implemented?
|
||||
|
||||
## Alternatives
|
||||
|
||||
Are there any alternative solutions or features you've considered?
|
||||
|
||||
## Additional context
|
||||
|
14
.github/ISSUE_TEMPLATE/issue.md
vendored
Normal file
14
.github/ISSUE_TEMPLATE/issue.md
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
name: "Issue"
|
||||
about: For issue reporting.
|
||||
labels: "bug"
|
||||
---
|
||||
|
||||
## Describe the issue
|
||||
|
||||
A clear and concise description of what the issue is.
|
||||
|
||||
### Links
|
||||
|
||||
- **Link to action run:**
|
||||
- **Link to action configuration:**
|
22
.github/problem-matcher.json
vendored
Normal file
22
.github/problem-matcher.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"problemMatcher": [
|
||||
{
|
||||
"owner": "shellcheck",
|
||||
"pattern": [
|
||||
{
|
||||
"regexp": "^In\\s(.+)\\sline\\s(\\d+):$",
|
||||
"file": 1,
|
||||
"line": 2
|
||||
},
|
||||
{
|
||||
"regexp": ".*"
|
||||
},
|
||||
{
|
||||
"regexp": "(SC\\d+):\\s(.+)$",
|
||||
"code": 1,
|
||||
"message": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
42
.github/workflows/additional_files.yml
vendored
Normal file
42
.github/workflows/additional_files.yml
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
name: 'additional_files'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["master"]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
additional_files:
|
||||
name: additional_files
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run ShellCheck
|
||||
uses: ./
|
||||
id: check
|
||||
with:
|
||||
additional_files: run finish discovery
|
||||
ignore: ignore
|
||||
scandir: testfiles
|
||||
|
||||
- name: Verify check
|
||||
run: |
|
||||
expect="testfiles/scandir/run"
|
||||
|
||||
if [[ ! "${{ steps.check.outputs.files }}" =~ testfiles/scandir/run ]];then
|
||||
echo "::error:: Expected file testfiles/scandir/run not found in ${{ steps.check.outputs.files }}"
|
||||
exit 1
|
||||
elif [[ ! "${{ steps.check.outputs.files }}" =~ testfiles/scandir/finish ]];then
|
||||
echo "::error:: Expected file testfiles/scandir/finish not found in ${{ steps.check.outputs.files }}"
|
||||
exit 1
|
||||
elif [[ ! "${{ steps.check.outputs.files }}" =~ testfiles/scandir/discovery ]];then
|
||||
echo "::error:: Expected file testfiles/scandir/discovery not found in ${{ steps.check.outputs.files }}"
|
||||
exit 1
|
||||
fi
|
38
.github/workflows/base.yml
vendored
Normal file
38
.github/workflows/base.yml
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
name: 'base'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["master"]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
base:
|
||||
name: base
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run ShellCheck
|
||||
uses: ./
|
||||
id: check
|
||||
with:
|
||||
ignore: ignore
|
||||
|
||||
- name: Verify check
|
||||
run: |
|
||||
expect="testfiles/test.bash"
|
||||
notexpect="testfiles/ignore/ignore.bash"
|
||||
|
||||
if [[ ! "${{ steps.check.outputs.files }}" =~ $expect ]];then
|
||||
echo "::error:: Expected file $expect not found in ${{ steps.check.outputs.files }}"
|
||||
exit 1
|
||||
elif [[ "${{ steps.check.outputs.files }}" =~ $notexpect ]];then
|
||||
echo "::error:: Expected file $notexpect found in ${{ steps.check.outputs.files }}"
|
||||
exit 1
|
||||
fi
|
39
.github/workflows/check_together.yml
vendored
Normal file
39
.github/workflows/check_together.yml
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
name: 'check_together'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["master"]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
check_together:
|
||||
name: check_together
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run ShellCheck
|
||||
uses: ./
|
||||
id: check
|
||||
with:
|
||||
ignore: ignore
|
||||
check_together: true
|
||||
|
||||
- name: Verify check
|
||||
run: |
|
||||
expect="testfiles/test.bash"
|
||||
notexpect="testfiles/ignore/ignore.bash"
|
||||
|
||||
if [[ ! "${{ steps.check.outputs.files }}" =~ $expect ]];then
|
||||
echo "::error:: Expected file $expect not found in ${{ steps.check.outputs.files }}"
|
||||
exit 1
|
||||
elif [[ "${{ steps.check.outputs.files }}" =~ $notexpect ]];then
|
||||
echo "::error:: Expected file $notexpect found in ${{ steps.check.outputs.files }}"
|
||||
exit 1
|
||||
fi
|
13
.github/workflows/push.yml
vendored
13
.github/workflows/push.yml
vendored
@@ -1,13 +0,0 @@
|
||||
on: push
|
||||
name: 'Trigger: Push'
|
||||
jobs:
|
||||
shellcheck:
|
||||
name: ShellCheck
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
- name: Run ShellCheck
|
||||
uses: ./
|
||||
with:
|
||||
ignore: ignore
|
58
.github/workflows/scandir.yml
vendored
Normal file
58
.github/workflows/scandir.yml
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
name: 'scandir'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["master"]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
scandir:
|
||||
name: scandir
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run ShellCheck
|
||||
uses: ./
|
||||
id: one
|
||||
with:
|
||||
scandir: testfiles/scandir
|
||||
|
||||
- name: Verify check
|
||||
run: |
|
||||
expect="testfiles/scandir/test.bash"
|
||||
notexpect="testfiles/test.bash"
|
||||
|
||||
if [[ ! "${{ steps.one.outputs.files }}" =~ $expect ]];then
|
||||
echo "::error:: Expected file $expect not found in ${{ steps.one.outputs.files }}"
|
||||
exit 1
|
||||
elif [[ "${{ steps.one.outputs.files }}" =~ $notexpect ]];then
|
||||
echo "::error:: Expected file $notexpect found in ${{ steps.one.outputs.files }}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- name: Run ShellCheck
|
||||
uses: ./
|
||||
id: two
|
||||
with:
|
||||
scandir: './testfiles/scandir'
|
||||
ignore: ignore
|
||||
|
||||
- name: Verify check
|
||||
run: |
|
||||
expect="testfiles/scandir/test.bash"
|
||||
notexpect="testfiles/test.bash"
|
||||
|
||||
if [[ ! "${{ steps.two.outputs.files }}" =~ $expect ]];then
|
||||
echo "::error:: Expected file $expect not found in ${{ steps.two.outputs.files }}"
|
||||
exit 1
|
||||
elif [[ "${{ steps.two.outputs.files }}" =~ $notexpect ]];then
|
||||
echo "::error:: Expected file $notexpect found in ${{ steps.two.outputs.files }}"
|
||||
exit 1
|
||||
fi
|
@@ -1,6 +0,0 @@
|
||||
FROM alpine:3.11.6
|
||||
|
||||
RUN apk add --no-cache shellcheck bash
|
||||
|
||||
COPY runaction.sh /action/runaction.sh
|
||||
ENTRYPOINT ["bash", "/action/runaction.sh"]
|
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019 ludeeus
|
||||
Copyright (c) 2020 ludeeus
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
70
README.md
70
README.md
@@ -17,7 +17,7 @@ jobs:
|
||||
name: Shellcheck
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
```
|
||||
@@ -57,3 +57,71 @@ example:
|
||||
```
|
||||
|
||||
This will skip `sample/directory/with/files/toignore/test.sh`
|
||||
|
||||
## Minimum severity of errors to consider (error, warning, info, style)
|
||||
|
||||
You can use the `severity` input to not fail until specified severity is met, for example fail only if there are errors in scripts but ignore styling, info and warnings.
|
||||
|
||||
example:
|
||||
|
||||
```yaml
|
||||
...
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
with:
|
||||
severity: error
|
||||
```
|
||||
|
||||
## Run shellcheck with all paths in a single invocation
|
||||
|
||||
If you run into SC1090/SC1091 errors you may need to tell shellcheck to check
|
||||
all files at once:
|
||||
|
||||
```yaml
|
||||
...
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
with:
|
||||
check_together: 'yes'
|
||||
```
|
||||
|
||||
This can turn into a problem if you have enough script files to overwhelm the
|
||||
maximum argv length on your system.
|
||||
|
||||
## Run shellcheck only in a single directory
|
||||
|
||||
If you have multiple directories with scripts, but only want to scan
|
||||
one of them, you can use the following configuration:
|
||||
|
||||
```yaml
|
||||
...
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
with:
|
||||
scandir: './scripts'
|
||||
```
|
||||
|
||||
## Scan for additional files
|
||||
|
||||
If you need to scan for unusual files, you can use the `additional_files` key.
|
||||
|
||||
```yaml
|
||||
...
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
with:
|
||||
additional_files: 'run finish'
|
||||
```
|
||||
|
||||
## Disable problem matcher
|
||||
|
||||
If you do not want to have the problem-matcher annotate files, you can disable it
|
||||
by setting `disable_matcher` to `true`.
|
||||
|
||||
```yaml
|
||||
...
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
with:
|
||||
disable_matcher: true
|
||||
```
|
201
action.yaml
201
action.yaml
@@ -2,13 +2,198 @@ name: "ShellCheck"
|
||||
author: "Ludeeus <hi@ludeeus.dev>"
|
||||
description: "GitHub action for ShellCheck."
|
||||
inputs:
|
||||
ignore:
|
||||
description: 'Paths to ignore when running ShellCheck'
|
||||
additional_files:
|
||||
description: "A space seperated list of additional filename to check"
|
||||
required: false
|
||||
default: ''
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
default: ""
|
||||
ignore:
|
||||
description: "Paths to ignore when running ShellCheck"
|
||||
required: false
|
||||
default: ""
|
||||
severity:
|
||||
description: "Minimum severity of errors to consider. Options: [error, warning, info, style]"
|
||||
required: false
|
||||
default: ""
|
||||
check_together:
|
||||
description: "Run shellcheck on _all_ files at once, instead of one at a time"
|
||||
required: false
|
||||
default: ""
|
||||
scandir:
|
||||
description: "Directory to be searched for files. Defaults to ."
|
||||
required: false
|
||||
default: "."
|
||||
disable_matcher:
|
||||
description: "Set to true to skip using problem-matcher"
|
||||
required: false
|
||||
default: "false"
|
||||
outputs:
|
||||
files:
|
||||
description: A list of files with issues
|
||||
value: ${{ steps.filepaths.outputs.filepaths }}
|
||||
options:
|
||||
description: The options used
|
||||
value: ${{ steps.options.outputs.options }}
|
||||
branding:
|
||||
icon: 'terminal'
|
||||
color: 'gray-dark'
|
||||
icon: "terminal"
|
||||
color: "gray-dark"
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Enable problem-matcher
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ ${{ inputs.disable_matcher }} != "true" ]]; then
|
||||
echo "::add-matcher::${{ github.action_path }}/.github/problem-matcher.json"
|
||||
fi
|
||||
|
||||
- name: Download shellcheck
|
||||
shell: bash
|
||||
run: |
|
||||
if [[ "${{ runner.os }}" == "macOS" ]]; then
|
||||
osvariant="darwin"
|
||||
else
|
||||
osvariant="linux"
|
||||
fi
|
||||
|
||||
scversion="stable"
|
||||
baseurl="https://github.com/koalaman/shellcheck/releases/download"
|
||||
|
||||
curl -Lso "${{ github.action_path }}/sc.tar.xz" \
|
||||
"${baseurl}/${scversion}/shellcheck-${scversion}.${osvariant}.x86_64.tar.xz"
|
||||
|
||||
tar -xf "${{ github.action_path }}/sc.tar.xz" -C "${{ github.action_path }}"
|
||||
mv "${{ github.action_path }}/shellcheck-${scversion}/shellcheck" \
|
||||
"${{ github.action_path }}/shellcheck"
|
||||
|
||||
- name: Set options
|
||||
shell: bash
|
||||
id: options
|
||||
run: |
|
||||
declare -a options
|
||||
if [[ -n "${{ inputs.severity }}" ]]; then
|
||||
options+=("-S ${{ inputs.severity }}")
|
||||
fi
|
||||
echo "::set-output name=options::${options[@]}"
|
||||
|
||||
- name: Gather excluded paths
|
||||
shell: bash
|
||||
id: exclude
|
||||
run: |
|
||||
declare -a excludes
|
||||
excludes+=("! -path \"*./.git/*\"")
|
||||
excludes+=("! -path \"*.go\"")
|
||||
excludes+=("! -path \"*/mvnw\"")
|
||||
for path in ${{ inputs.ignore }}; do
|
||||
echo "::debug:: Adding "$path" to excludes"
|
||||
excludes+=("! -path \"*./$path/*\"")
|
||||
excludes+=("! -path \"*/$path/*\"")
|
||||
done
|
||||
echo "::set-output name=excludes::${excludes[@]}"
|
||||
|
||||
- name: Gather additional files
|
||||
shell: bash
|
||||
id: additional
|
||||
run: |
|
||||
declare -a files
|
||||
for file in ${{ inputs.additional_files }}; do
|
||||
echo "::debug:: Adding "$file" to excludes"
|
||||
files+=("-o -name \"*$file\"")
|
||||
done
|
||||
echo "::set-output name=files::${files[@]}"
|
||||
|
||||
- name: Gather base file paths
|
||||
shell: bash
|
||||
id: filepaths
|
||||
run: |
|
||||
declare -a filepaths
|
||||
shebangregex="^#! */[^ ]*/(env *)?[abkz]*sh"
|
||||
|
||||
for path in $(find "${{ inputs.scandir }}" \
|
||||
-type f -type f ${{ steps.exclude.outputs.excludes }} \
|
||||
'(' \
|
||||
-name '*.bash' \
|
||||
-o -name '.bashrc' \
|
||||
-o -name 'bashrc' \
|
||||
-o -name '.bash_aliases' \
|
||||
-o -name '.bash_completion' \
|
||||
-o -name '.bash_login' \
|
||||
-o -name '.bash_logout' \
|
||||
-o -name '.bash_profile' \
|
||||
-o -name 'bash_profile' \
|
||||
-o -name '*.ksh' \
|
||||
-o -name 'suid_profile' \
|
||||
-o -name '*.zsh' \
|
||||
-o -name '.zlogin' \
|
||||
-o -name 'zlogin' \
|
||||
-o -name '.zlogout' \
|
||||
-o -name 'zlogout' \
|
||||
-o -name '.zprofile' \
|
||||
-o -name 'zprofile' \
|
||||
-o -name '.zsenv' \
|
||||
-o -name 'zsenv' \
|
||||
-o -name '.zshrc' \
|
||||
-o -name 'zshrc' \
|
||||
-o -name '*.sh' \
|
||||
-o -path '*/.profile' \
|
||||
-o -path '*/profile' \
|
||||
-o -name '*.shlib' \
|
||||
${{ steps.additional.outputs.files }} \
|
||||
')'\
|
||||
-print); do
|
||||
filepaths+=("$path");
|
||||
done
|
||||
|
||||
for file in $(find "${{ inputs.scandir }}" ${{ steps.exclude.outputs.excludes }} -type f ! -name '*.*' -perm /111 -print); do
|
||||
head -n1 "$file" | grep -Eqs "$shebangregex" || continue
|
||||
filepaths+=("$file");
|
||||
done
|
||||
echo "::set-output name=filepaths::${filepaths[@]}"
|
||||
|
||||
- name: Check bin subdirs
|
||||
shell: bash
|
||||
run: |
|
||||
if find "${{ inputs.scandir }}" ${{ steps.exclude.outputs.excludes }} -path '*bin/*/*' -type f -perm /111 -print |
|
||||
grep .
|
||||
then
|
||||
echo "::warning:: subdirectories of bin directories are not usable via PATH"
|
||||
fi
|
||||
|
||||
- name: Check no suffix in PATH
|
||||
shell: bash
|
||||
run: |
|
||||
if find "${{ inputs.scandir }}" ${{ steps.exclude.outputs.excludes }} -path '*bin/*' -name '*.*' -type f -perm /111 -perm /444 -print |
|
||||
grep .
|
||||
then
|
||||
echo "::warning:: programs in PATH should not have a filename suffix"
|
||||
fi
|
||||
|
||||
- name: Run the file check
|
||||
id: check
|
||||
shell: bash
|
||||
run: |
|
||||
statuscode=0
|
||||
|
||||
if [[ -n "${{ inputs.check_together }}" ]]; then
|
||||
"${{ github.action_path }}/shellcheck" \
|
||||
${{ steps.options.outputs.options }} \
|
||||
${{ steps.filepaths.outputs.filepaths }} || statuscode=$?
|
||||
else
|
||||
for file in ${{ steps.filepaths.outputs.filepaths }}; do
|
||||
echo "::debug::Checking $file"
|
||||
"${{ github.action_path }}/shellcheck" \
|
||||
${{ steps.options.outputs.options }} \
|
||||
"$file" || statuscode=$?;
|
||||
done
|
||||
fi
|
||||
|
||||
echo "::set-output name=statuscode::$statuscode"
|
||||
|
||||
- name: Print information
|
||||
shell: bash
|
||||
run: |
|
||||
echo "Files: ${{steps.filepaths.outputs.filepaths}}"
|
||||
echo "Excluded: ${{ steps.exclude.outputs.excludes }}"
|
||||
echo "Options: ${{ steps.options.outputs.options }}"
|
||||
echo "Status code: ${{steps.check.outputs.statuscode}}"
|
||||
|
||||
exit ${{steps.check.outputs.statuscode}}
|
74
runaction.sh
74
runaction.sh
@@ -1,74 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd "$GITHUB_WORKSPACE" || exit 1
|
||||
|
||||
declare statuscode
|
||||
declare -a filepaths
|
||||
declare -a excludes
|
||||
declare -a tmp
|
||||
|
||||
statuscode=0
|
||||
|
||||
excludes+=( ! -path *./.git/* )
|
||||
excludes+=( ! -path *.go )
|
||||
excludes+=( ! -path */mvnw )
|
||||
|
||||
for path in ${INPUT_IGNORE}; do
|
||||
echo "::debug:: Adding '${path}' to excludes"
|
||||
excludes+=(! -path "*./${path}/*" )
|
||||
excludes+=(! -path "*/${path}/*" )
|
||||
done
|
||||
|
||||
readarray -d '' filepaths < <(find . "${excludes[@]}" \
|
||||
'(' \
|
||||
\
|
||||
-name '*.bash' \
|
||||
-o -path '*/.bash*' \
|
||||
-o -path '*/bash*' \
|
||||
-o -name '*.ksh' \
|
||||
-o -name 'ksh*' \
|
||||
-o -path '*/.ksh*' \
|
||||
-o -path '*/ksh*' \
|
||||
-o -name 'suid_profile' \
|
||||
-o -name '*.zsh' \
|
||||
-o -name '.zlogin*' \
|
||||
-o -name 'zlogin*' \
|
||||
-o -name '.zlogout*' \
|
||||
-o -name 'zlogout*' \
|
||||
-o -name '.zprofile*' \
|
||||
-o -name 'zprofile*' \
|
||||
-o -path '*/.zsh*' \
|
||||
-o -path '*/zsh*' \
|
||||
-o -name '*.sh' \
|
||||
-o -path '*/.profile*' \
|
||||
-o -path '*/.shlib*' \
|
||||
-o -path '*/shlib*' \
|
||||
')'\
|
||||
\
|
||||
-print0)
|
||||
|
||||
|
||||
readarray -d '' tmp < <(find . "${excludes[@]}" -type f ! -name '*.*' -perm /111 -print0)
|
||||
for file in "${tmp[@]}"; do
|
||||
head -n1 "$file" | grep -Eqs "^#! */[^ ]*/[abkz]*sh" || continue
|
||||
filepaths+=("$file")
|
||||
done
|
||||
|
||||
if find . "${excludes[@]}" -path '*bin/*/*' -type f -perm /111 -print |
|
||||
grep .
|
||||
then
|
||||
echo >&2 "::warning:: subdirectories of bin directories are not usable via PATH"
|
||||
fi
|
||||
|
||||
if find . "${excludes[@]}" -path '*bin/*' -name '*.*' -type f -perm /111 -perm /444 -print |
|
||||
grep .
|
||||
then
|
||||
echo >&2 "::warning:: programs in PATH should not have a filename suffix"
|
||||
fi
|
||||
|
||||
for file in "${filepaths[@]}"; do
|
||||
echo "::debug:: Checking $file"
|
||||
shellcheck "$file" || statuscode=$?
|
||||
done
|
||||
|
||||
exit "$statuscode"
|
6
testfiles/bashfile.c
Normal file
6
testfiles/bashfile.c
Normal file
@@ -0,0 +1,6 @@
|
||||
/* C code test file
|
||||
* file that should not be matched for shellcheck runs
|
||||
*/
|
||||
int main(void) {
|
||||
return 0;
|
||||
}
|
@@ -1,3 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo $test
|
||||
echo $test $test
|
||||
|
||||
echo $test2
|
3
testfiles/scandir/discovery
Normal file
3
testfiles/scandir/discovery
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bashio
|
||||
|
||||
echo "hi"
|
5
testfiles/scandir/finish
Normal file
5
testfiles/scandir/finish
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bashio
|
||||
|
||||
hi="hi"
|
||||
|
||||
echo "$hi"
|
3
testfiles/scandir/run
Normal file
3
testfiles/scandir/run
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
echo "hi"
|
3
testfiles/scandir/test.bash
Normal file
3
testfiles/scandir/test.bash
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
test="test"
|
||||
echo "$test"
|
Reference in New Issue
Block a user