Add Workflow to run Shellcheck
This commit is contained in:
parent
7c85ce3dee
commit
c62363dd62
15
.github/workflows/shellcheck.yml
vendored
Normal file
15
.github/workflows/shellcheck.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
name: Shellcheck
|
||||||
|
|
||||||
|
on: push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
shellcheck:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Install shellcheck
|
||||||
|
run: apt-get install shellcheck
|
||||||
|
|
||||||
|
- name: Run shellcheck
|
||||||
|
run: shellcheck *.sh
|
Loading…
Reference in New Issue
Block a user