Add Workflow to run Shellcheck

This commit is contained in:
Stefan Zweifel 2019-12-12 21:05:01 +01:00
parent 7c85ce3dee
commit c62363dd62

15
.github/workflows/shellcheck.yml vendored Normal file
View 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