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