diff options
author | Sebastian Sellmeier <mail@sebastian-sellmeier.de> | 2021-05-15 12:43:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 12:43:43 +0200 |
commit | 929205022cdde8bee995771fbfbb25bf44af830b (patch) | |
tree | ab35406f3236757330b935d38fe439b023faecad /.github/workflows | |
parent | 3be77f68548c8f92a3cc7f530f9b35a1478a0651 (diff) |
Add shellcheck-action, fix shellcheck-errors (#206)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/shellcheck.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml new file mode 100644 index 0000000..48038d4 --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,16 @@ +name: ShellCheck + +on: [push, pull_request] + +jobs: + shellcheck: + name: ShellCheck + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + with: + severity: style |