From 993a2929fda3b3c3a94a7976c738bc17e8f9efb1 Mon Sep 17 00:00:00 2001 From: Yatish Mehta Date: Sat, 12 Oct 2024 21:02:33 -0700 Subject: [PATCH] Fixed Github Actions --- .github/workflows/validate-shell-scripts.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/validate-shell-scripts.yml diff --git a/.github/workflows/validate-shell-scripts.yml b/.github/workflows/validate-shell-scripts.yml new file mode 100644 index 0000000..c77931d --- /dev/null +++ b/.github/workflows/validate-shell-scripts.yml @@ -0,0 +1,19 @@ +name: Validate Shell Scripts + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + with: + scandir: "." + severity: error