Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,15 @@ inputs:
(not in the runner's workspace or temp directory).
required: false
default: 'true'
summary-output-file:
description: |-
Supply a path to which the step summary will be written.
Leave empty to not write summary to a file.

> [!NOTE]
> Any relative path shall be relative to the [`repo-root`](#repo-root) path.
required: false
default: ''
outputs:
checks-failed:
description: An integer that can be used as a boolean value to indicate if any checks failed by clang-tidy and clang-format.
Expand Down Expand Up @@ -446,6 +455,7 @@ runs:
'--format-review=${{ inputs.format-review }}'
'--passive-reviews=${{ inputs.passive-reviews }}'
'--jobs=${{ inputs.jobs }}'
'--summary-output-file=${{ inputs.summary-output-file }}'
]
mut uv_args = [run --no-sync --project $action_path --directory (pwd)]

Expand Down
2 changes: 2 additions & 0 deletions docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ inputs:
minimum-version: '2.11.0'
cache-enable:
minimum-version: '2.16.0'
summary-output-file:
minimum-version: '2.20.0'
outputs:
checks-failed:
minimum-version: '1.2.0'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies = []
[dependency-groups]
action = [
"clang-tools==1.1.0",
"cpp-linter==1.12.1",
"cpp-linter==1.13.0",
]
dev = [
"mypy>=2.1.0",
Expand Down
92 changes: 7 additions & 85 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading