From 331c6a5abb369537f852cd64b324a1dd6231f48c Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Thu, 31 Mar 2022 14:50:28 +0200 Subject: [PATCH] add shellcheck action --- .github/workflows/lint-shell-scripts.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/lint-shell-scripts.yml diff --git a/.github/workflows/lint-shell-scripts.yml b/.github/workflows/lint-shell-scripts.yml new file mode 100644 index 00000000..4dca7f24 --- /dev/null +++ b/.github/workflows/lint-shell-scripts.yml @@ -0,0 +1,14 @@ +name: Lint Shell Scripts + +on: + push: + branches: + - main + pull_request: + +jobs: + shellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ludeeus/action-shellcheck@1.1.0