Create check.yml
This commit is contained in:
parent
cc7c2d7319
commit
2a9c54f52d
1 changed files with 14 additions and 0 deletions
14
.github/workflows/check.yml
vendored
Normal file
14
.github/workflows/check.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
on: [workflow_call]
|
||||
name: "Check"
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
name: Shellcheck
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
env:
|
||||
SHELLCHECK_OPTS: -e SC2001 -e SC2002 -e SC2116 -e SC2034 -e SC1091 -e SC2143 -e SC2223 -e SC2086 -e SC2145 -e SC2015 -e SC2268 -e SC2207 -e SC2064 -e SC2162 -e SC2166
|
Loading…
Reference in a new issue