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 }}