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 e78ab4e commit 672b395Copy full SHA for 672b395
.github/workflows/clangtidy.yml
@@ -25,11 +25,15 @@ jobs:
25
run: |
26
build/build.sh -clangtidy -opt |& tee build.clangtidy.log
27
clang-tidy-html build.clangtidy.log
28
- - name: Upload Coverity imed
+ - name: Upload clang raw log
29
if: steps.cache-sha.outputs.cache-hit != 'true'
30
uses: actions/upload-artifact@v1
31
with:
32
- name: clang-tidy logs
33
- path: |
34
- build.clangtidy.log
35
- clang.html
+ name: clang-tidy-log
+ path: build.clangtidy.log
+ - name: Upload clang html
+ if: steps.cache-sha.outputs.cache-hit != 'true'
36
+ uses: actions/upload-artifact@v1
37
+ with:
38
+ name: clang-tidy-html
39
+ path: clang.html
0 commit comments