summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Moeller <jan.moeller0@gmail.com>2021-12-08 00:52:17 +0100
committerJoe Hillenbrand <joehillen@gmail.com>2021-12-12 16:17:21 -0800
commit0890e9261a6da411c6652d8f2acf7e4694245ab6 (patch)
tree2b80293e4f895462027946c8267f33b6e4093597
parentc4eda8989bb9e45a90e1a8fe49ea15ebfce11b70 (diff)
ci: Add sh-checker gh-action step
-rw-r--r--.github/workflows/lint.yaml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
new file mode 100644
index 0000000..5bb59bf
--- /dev/null
+++ b/.github/workflows/lint.yaml
@@ -0,0 +1,13 @@
+name: lint
+on: [push, pull_request]
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Run sh-checker
+ uses: luizm/action-sh-checker@master
+ with:
+ sh_checker_exclude: "README.sh"