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 6f58b42 commit fbedf33Copy full SHA for fbedf33
.github/workflows/test.yml
@@ -3,6 +3,10 @@ name: Test
3
on:
4
pull_request:
5
workflow_dispatch:
6
+ inputs:
7
+ clang-tidy:
8
+ type: boolean
9
+ default: true
10
11
jobs:
12
run-tests:
@@ -25,7 +29,7 @@ jobs:
25
29
-DVIAMCPPSDK_OFFLINE_PROTO_GENERATION=ON \
26
30
-DVIAMCPPSDK_BUILD_TESTS=ON \
27
31
-DVIAMCPPSDK_BUILD_EXAMPLES=ON \
28
- -DVIAMCPPSDK_CLANG_TIDY=ON \
32
+ -DVIAMCPPSDK_CLANG_TIDY=${{ inputs.clang-tidy && 'ON' || 'OFF' }} \
33
-DVIAMCPPSDK_SANITIZED_BUILD=${{ matrix.BUILD_SHARED }}
34
- name: build
35
run: |
0 commit comments