shellcheck: Run shellcheck as a Github action.

Add shellcheck as an action to be executed on every PR.
This commit is contained in:
Rafael Guterres Jeffman
2021-11-23 16:35:44 -03:00
parent 93a441494d
commit 036891d09a

View File

@@ -76,3 +76,11 @@ jobs:
run: |
pip install pylint==2.10.2
pylint plugins --disable=import-error
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@1.1.0