diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e9317dc..c2390ed 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -28,7 +28,6 @@ jobs: os: windows-2022 tidy-executble: clang-tidy fail-fast: false - continue-on-error: true steps: - name: Checkout sources @@ -63,6 +62,15 @@ jobs: exit 1 } + cppcheck: + runs-on: ubuntu-24.04 + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Install Cppcheck + run: sudo apt update -qq && sudo apt install -y cppcheck + - name: Run Cppcheck if: runner.os == 'Linux' shell: pwsh