-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔖 (v1.3.0): Merge branch 'release/1.3.0'
- Loading branch information
Showing
314 changed files
with
28,302 additions
and
1,514 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,16 @@ name: Code Analysis - Clang-Tidy | |
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- develop | ||
|
||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-22.04 | ||
|
@@ -41,24 +45,6 @@ jobs: | |
# Mark: - Analyze | ||
# | ||
|
||
- name: Get modified files | ||
id: modified_files | ||
uses: Ana06/[email protected] | ||
with: | ||
format: "space-delimited" | ||
filter: "*" | ||
|
||
- name: Run clang-tidy | ||
run: | | ||
echo ${{ steps.modified_files.outputs.added }} \ | ||
${{ steps.modified_files.outputs.modified }} \ | ||
${{ steps.modified_files.outputs.added_modified }} \ | ||
| xargs -n1 \ | ||
| grep -E -v "_test" \ | ||
| grep -E -v "extern" \ | ||
| grep -E -v "gtest" \ | ||
| grep -E -v "gmock" \ | ||
| grep -E -v "mocks" \ | ||
| grep -E -v "stubs" \ | ||
| grep -E "\.h$|\.cpp$" \ | ||
| xargs --no-run-if-empty ruby tools/run-clang-tidy.rb _build_cmake_tools | ||
make clang_tidy_diff |
Oops, something went wrong.