From 5669c01472b248f5a76c64830addada99280d75a Mon Sep 17 00:00:00 2001 From: metafates Date: Sun, 11 Feb 2024 18:11:26 +0300 Subject: [PATCH] ci: add shellcheck workflow --- .github/workflows/shellcheck.yml | 17 +++++++++++++++++ 1 file changed, 17 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..7776586c --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,17 @@ +--- +name: shellcheck +on: + push: + branches: + - master + pull_request: + branches: + - master +jobs: + shellcheck: + name: shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master