diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml new file mode 100644 index 0000000..a60fce9 --- /dev/null +++ b/.github/workflows/shell.yml @@ -0,0 +1,22 @@ +name: ShellCheck +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + shellcheck: + name: ShellCheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run ShellCheck for shell scripts + uses: ludeeus/action-shellcheck@master + with: + severity: style + scandir: . + format: gcc + version: stable