From 217e215c3714d1dd36997635ac659aed99fe79b8 Mon Sep 17 00:00:00 2001 From: Savely Krasovsky Date: Tue, 26 Dec 2023 17:59:15 +0100 Subject: [PATCH] feat: add shellcheck action --- .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 0000000..532f437 --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,21 @@ +on: + push: + branches: + - master + pull_request: + branches: + - master + +name: "ShellCheck" +permissions: {} + +jobs: + shellcheck: + name: ShellCheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@2.0.0 + with: + additional_files: 'waybar-updates'