aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSebastian Sellmeier <mail@sebastian-sellmeier.de>2021-05-15 12:43:43 +0200
committerGitHub <noreply@github.com>2021-05-15 12:43:43 +0200
commit929205022cdde8bee995771fbfbb25bf44af830b (patch)
treeab35406f3236757330b935d38fe439b023faecad /.github
parent3be77f68548c8f92a3cc7f530f9b35a1478a0651 (diff)
Add shellcheck-action, fix shellcheck-errors (#206)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/shellcheck.yml16
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