From 03a901d4b93234342b061be2cf5c631fcc86f58f Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Thu, 19 Sep 2024 14:03:29 -0500 Subject: [PATCH] Create shellcheck.yml --- .github/workflows/shellcheck.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/shellcheck.yml diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml new file mode 100644 index 00000000..0ebbcf2e --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,18 @@ +name: ShellCheck + +on: + pull_request: + paths: + - 'tabs/**/*.sh' + +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + with: + scandir: 'tabs' + severity: error \ No newline at end of file