Fix model glow not being removed when toggling off the master switch #1007
This file contains 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 | |
on: [push, pull_request] | |
jobs: | |
run: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
configuration: [Debug, Release] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: CXX=clang++-18 cmake -Werror=dev -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build | |
- name: run clang-tidy | |
run: run-clang-tidy-18 Source/ -p build/ |