Skip to content

Commit 672b395

Browse files
committed
Tweak clang-tidy work flow
1 parent e78ab4e commit 672b395

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/clangtidy.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,15 @@ jobs:
2525
run: |
2626
build/build.sh -clangtidy -opt |& tee build.clangtidy.log
2727
clang-tidy-html build.clangtidy.log
28-
- name: Upload Coverity imed
28+
- name: Upload clang raw log
2929
if: steps.cache-sha.outputs.cache-hit != 'true'
3030
uses: actions/upload-artifact@v1
3131
with:
32-
name: clang-tidy logs
33-
path: |
34-
build.clangtidy.log
35-
clang.html
32+
name: clang-tidy-log
33+
path: build.clangtidy.log
34+
- name: Upload clang html
35+
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

Comments
 (0)