From 845b8cfe49430fb2f5cc6f445ce90b6b70bf166b Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Tue, 30 Aug 2022 09:01:14 +0200 Subject: [PATCH] thanks cpp-linter, you have been very helpful --- .github/workflows/cpp-linter.yml | 47 -------------------------------- 1 file changed, 47 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 9cccc63082..0000000000 --- a/.github/workflows/cpp-linter.yml +++ /dev/null @@ -1,47 +0,0 @@ -# Workflow syntax: -# https://help.github.com/en/articles/workflow-syntax-for-github-actions -name: cpp-linter - -on: - pull_request: - types: [opened, reopened, synchronize] - push: - branches: - - master - -jobs: - cpp-linter: - strategy: - matrix: - compiler: [clang] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Install dependencies - run: sudo apt-get update && sudo apt-get install libpng-dev libsamplerate0-dev libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev ninja-build - - name: Run cmake to generate compilation database - run: cmake -S . -B . -G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=1 - - uses: cpp-linter/cpp-linter-action@v1 - id: linter - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - style: file - lines-changed-only: true - version: 14 - tidy-checks: >- - boost-* - ,bugprone-* - ,performance-* - ,readability-* - ,portability-* - ,modernize-* - ,clang-analyzer-* - ,cppcoreguidelines-* - ,-cppcoreguidelines-avoid-magic-numbers - ,-readability-magic-numbers - - - name: Fail fast?! - if: steps.linter.outputs.checks-failed > 0 - run: | - echo "Some files failed the linting checks! Fail fast disabled until false posivite issue is fixed"