diff --git a/.github/workflows/validate-shell-scripts.yml b/.github/workflows/validate-shell-scripts.yml new file mode 100644 index 0000000..c77931d --- /dev/null +++ b/.github/workflows/validate-shell-scripts.yml @@ -0,0 +1,19 @@ +name: Validate Shell Scripts + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + with: + scandir: "." + severity: error