mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Clean up clang-tidy action checks (#4331)
* clang-tidy action: Exclude lib & tests dir for clang-tidy CI checks The lib dir is obvious, but the tests dir is disabled because gtest has a million different thing that clang-tidy doesn't like, while they're in reality perfectly reasonable * clang-tidy-action: Disable the LGTM comment
This commit is contained in:
parent
bf5a5b839c
commit
adf58d2770
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -166,6 +166,7 @@ jobs:
|
|||
build_dir: build
|
||||
config_file: ".clang-tidy"
|
||||
split_workflow: true
|
||||
exclude: "tests/*,lib/*"
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: (startsWith(matrix.os, 'ubuntu') && matrix.pch == false && matrix.qt-version == '5.15.2' && github.event_name == 'pull_request')
|
||||
|
|
2
.github/workflows/post-clang-tidy-review.yml
vendored
2
.github/workflows/post-clang-tidy-review.yml
vendored
|
@ -37,3 +37,5 @@ jobs:
|
|||
|
||||
- uses: ZedThree/clang-tidy-review/post@v0.10.1
|
||||
id: review
|
||||
with:
|
||||
lgtm_comment_body: ""
|
||||
|
|
Loading…
Reference in a new issue