From d99803f2a79d093b63b3e4c46d98594ed2b29413 Mon Sep 17 00:00:00 2001 From: Md Nisab Bin Zahid Date: Mon, 26 Feb 2024 16:12:44 +0600 Subject: [PATCH] Create linters.yml --- .github/workflows/linters.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/linters.yml diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml new file mode 100644 index 0000000..a05a96d --- /dev/null +++ b/.github/workflows/linters.yml @@ -0,0 +1,17 @@ +name: Super-linter + +on: push +jobs: + super-lint: + name: Lint code base + runs-on: ubuntu-latest + steps: + - name: checkout-code + uses: actions/checkout@v2 + + - name: Run super linter + uses: github/super-linter@v3 + env: + DEFAULT_BRANCH: main + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +