diff --git a/.github/workflows/cpp-lint-package.yml b/.github/workflows/cpp-lint-package.yml index 3651db9..102da9f 100644 --- a/.github/workflows/cpp-lint-package.yml +++ b/.github/workflows/cpp-lint-package.yml @@ -11,11 +11,12 @@ on: jobs: cpp-linter: + name: cpp-linter job runs-on: windows-latest strategy: matrix: - clang-version: ['7', '8', '9','10', '11', '12', '13', '14', '15', '16', '17'] + clang-version: ['17'] #['7', '8', '9','10', '11', '12', '13', '14', '15', '16', '17'] repo: ['cpp-linter/cpp-linter'] branch: - ${{ github.event_name == 'workflow_dispatch' && inputs.branch || 'hide-reuse-pr-reviews' }} @@ -67,9 +68,10 @@ jobs: -f=false --extra-arg="-std=c++14 -Wall" --thread-comments=${{ matrix.clang-version == '17' && 'update' }} - -a=${{ matrix.clang-version == '17' }} + -a=false --tidy-review=${{ matrix.clang-version == '17' }} --format-review=${{ matrix.clang-version == '17' }} + --step-summary=true - name: Fail fast?! if: steps.linter.outputs.checks-failed > 0