From be503480e6545da4bedacb986441e7022c79d781 Mon Sep 17 00:00:00 2001 From: Force Charlie Date: Sat, 31 Aug 2024 16:50:55 +0800 Subject: [PATCH] remove super linter --- .github/workflows/linter.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml deleted file mode 100644 index 86afa2d..0000000 --- a/.github/workflows/linter.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Linter -on: - push: - paths-ignore: - # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions - - "docs/**" - - "**.md" - - "**.txt" - - "LICENSE" - pull_request: - paths-ignore: - - "docs/**" - - "**.md" - - "**.txt" - - "LICENSE" -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - name: Super-Linter - uses: super-linter/super-linter@v7.1.0 - env: - # To report GitHub Actions status checks - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - VALIDATE_ALL_CODEBASE: false - VALIDATE_GO: true - DEFAULT_BRANCH: master