From fb8805ad4f87ac389a67519e55bbc580d96b435b Mon Sep 17 00:00:00 2001 From: Jasstkn Date: Sat, 18 Jun 2022 14:30:33 +0200 Subject: [PATCH] Configure linting for scripts/ directory Signed-off-by: Jasstkn --- .github/workflows/lint.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..2c7f73b --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,17 @@ +on: + pull_request: + branches: + - master + +name: 'lint' + +jobs: + lint-scripts: + name: lint-scripts + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + with: + scandir: './scripts'