From d3861eccb54efc01cfc1b3961efd75fa75821cf7 Mon Sep 17 00:00:00 2001 From: Max Ostapenko <1611259+max-ostapenko@users.noreply.github.com> Date: Sat, 12 Oct 2024 18:46:06 +0200 Subject: [PATCH] linter --- .github/workflows/llinter.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/llinter.yaml diff --git a/.github/workflows/llinter.yaml b/.github/workflows/llinter.yaml new file mode 100644 index 0000000..c7cdd37 --- /dev/null +++ b/.github/workflows/llinter.yaml @@ -0,0 +1,20 @@ +on: + workflow_dispatch: + pull_request: + push: + +jobs: + build: + name: Lint + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Lint Code Base + uses: super-linter/super-linter/slim@v7.1.0 + env: + DEFAULT_BRANCH: main + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}