diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml new file mode 100644 index 0000000..cb23caa --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,20 @@ +on: + push: + branches: + - '**' + +name: 'Check Script' + +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + env: + SHELLCHECK_OPTS: -s bash + with: + ignore_paths: custompios + format: tty \ No newline at end of file