We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d658c commit c2ff406Copy full SHA for c2ff406
.github/workflows/check-code-style.yml
@@ -75,7 +75,8 @@ jobs:
75
if: ${{ steps.gather-list-of-changes.outputs.HAS_CHANGES }}
76
run: |
77
mkdir build && cd build
78
- cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" ${{ github.workspace }}
+ cmake -DCMAKE_CXX_COMPILER=clang++-${{ env.LLVM_VERSION }} \
79
+ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" ${{ github.workspace }}
80
81
- name: Run clang-format
82
0 commit comments