From b13eaf0ff6de5a0ec723effeb024c7970f16f407 Mon Sep 17 00:00:00 2001 From: Heavybullets8 Date: Tue, 20 Dec 2022 07:08:42 -0700 Subject: [PATCH] shellcheck --- .github/workflows/shellcheck.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..29c41a73 --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,21 @@ +on: + push: + pull_request: + workflow_dispatch: + +name: ShellCheck + +jobs: + ShellCheck: + name: ShellCheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + env: + SHELLCHECK_OPTS: -e SC2154 + with: + check_together: 'yes' + format: gcc +