diff --git a/.github/workflows/deb-build.yml b/.github/workflows/commit-build.yml similarity index 100% rename from .github/workflows/deb-build.yml rename to .github/workflows/commit-build.yml diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml new file mode 100644 index 0000000..eb10c9d --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,16 @@ +# Run shellcheck on commit + +name: Check with shellcheck + +on: + push: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Run shellcheck + uses: ludeeus/action-shellcheck@master