try this one?
This commit is contained in:
parent
d98f6a4a0b
commit
a16bd4393c
|
|
@ -1,18 +1,16 @@
|
||||||
# from here: https://github.com/marketplace/actions/shellcheck
|
# from here: https://github.com/marketplace/actions/shellcheck
|
||||||
- name: ShellCheck
|
on:
|
||||||
# You may pin to the exact commit or the version.
|
push:
|
||||||
# uses: ludeeus/action-shellcheck@d586102c117f97e63d7e3b56629d269efc9a7c60
|
branch:
|
||||||
uses: ludeeus/action-shellcheck@1.0.0
|
- master
|
||||||
# with:
|
|
||||||
# # A space seperated list of additional filename to check
|
name: 'Trigger: Push action'
|
||||||
# additional_files: # optional, default is
|
|
||||||
# # Paths to ignore when running ShellCheck
|
jobs:
|
||||||
# ignore: # optional, default is
|
shellcheck:
|
||||||
# # Minimum severity of errors to consider. Options: [error, warning, info, style]
|
name: Shellcheck
|
||||||
# severity: # optional, default is
|
runs-on: ubuntu-latest
|
||||||
# # Run shellcheck on _all_ files at once, instead of one at a time
|
steps:
|
||||||
# check_together: # optional, default is
|
- uses: actions/checkout@v2
|
||||||
# # Directory to be searched for files. Defaults to .
|
- name: Run ShellCheck
|
||||||
# scandir: # optional, default is .
|
uses: ludeeus/action-shellcheck@master
|
||||||
# # Set to true to skip using problem-matcher
|
|
||||||
# disable_matcher: # optional, default is false
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue