diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 9009543..818f796 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -13,6 +13,7 @@ jobs: cache: 'pip' # caching pip dependencies - uses: ammaraskar/gcc-problem-matcher@master + - uses: root-project/gcc-problem-matcher-improved@v1 - name: Install PIP packages run: pip install -r requirements.txt @@ -27,19 +28,6 @@ jobs: mkdir build cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON - - uses: cpp-linter/cpp-linter-action@v2 - id: linter - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - style: '' # Use .clang-format config file - tidy-checks: '' # Use .clang-tidy config file - # only 'update' a single comment in a pull request's thread. - thread-comments: ${{ github.event_name == 'pull_request' && 'update' }} - - name: Fail fast?! - if: steps.linter.outputs.checks-failed > 0 - run: exit 1 - - name: Run clang-tidy (Static analysis & Code style checks) run: clang-tidy -p=build `find src -name '*.cpp'` `find src -name '*.h'`