From ebbed05137fe15c091d9a5fa50c8a37588596f09 Mon Sep 17 00:00:00 2001 From: Derek Bailey Date: Fri, 5 Aug 2022 22:56:00 -0700 Subject: [PATCH] Delete cpp-linter.yml Linter was not that useful, so removing it. --- .github/workflows/cpp-linter.yml | 38 -------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/cpp-linter.yml diff --git a/.github/workflows/cpp-linter.yml b/.github/workflows/cpp-linter.yml deleted file mode 100644 index 035657ebf..000000000 --- a/.github/workflows/cpp-linter.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: cpp-linter -permissions: read-all - -on: - pull_request: - branches: - - master - paths-ignore: "tests/**" - -jobs: - cpp-linter: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: cmake - run: CXX=clang++-12 cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release . - - uses: shenxianpeng/cpp-linter-action@master - id: linter - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - version: 12 - style: file - lines-changed-only: true - tidy-checks: >- - bugprone-*, - performance-*, - readability-*, - portability-*, - modernize-*, - clang-analyzer-*, - cppcoreguidelines-*, - -modernize-use-trailing-return-type - - - name: Check Result - if: steps.linter.outputs.checks-failed > 0 - run: | - echo "Failed linting."