Use StaticVector for all vendors #874
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: clang-tidy check | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake', '.github/workflows/clang-tidy-check.yml'] | |
| pull_request: | |
| types: [ opened, synchronize ] | |
| paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake', '.github/workflows/clang-tidy-check.yml'] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tidy-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y cmake curl g++ git libgtest-dev libgmock-dev libbenchmark-dev libfmt-dev libsdl2-dev libsodium-dev libpng-dev libbz2-dev wget | |
| - name: CMake Configure | |
| run: cmake -S. -Bbuild | |
| - name: clang-tidy Check | |
| uses: cpp-linter/cpp-linter-action@v2 | |
| id: linter | |
| with: | |
| database: build # directory containing compile_commands.json | |
| style: '' # using an empty string here disables clang-format checks. We leave the existing clang-format-check workflow to run clang-format instead | |
| tidy-checks: '' # using an empty string here instructs the action to use only checks from the .clang-tidy file | |
| ignore-tidy: '3rdParty' |