Add GitHub actions workflow for shellcheck
This commit is contained in:
parent
370806bf30
commit
9bbd70d729
1 changed files with 11 additions and 0 deletions
11
.github/wrokflows/push.yml
vendored
Normal file
11
.github/wrokflows/push.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
on: push
|
||||||
|
name: ShellCheck
|
||||||
|
jobs:
|
||||||
|
shellcheck:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: shellcheck
|
||||||
|
uses: actions/bin/shellcheck@master
|
||||||
|
with:
|
||||||
|
args: wireguard-install.sh -e SC1091,SC2164,SC2034,SC1072,SC1073,SC1009
|
||||||
Loading…
Reference in a new issue