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 1752aba commit 1ae731cCopy full SHA for 1ae731c
.github/workflows/format_check.yml
@@ -44,8 +44,7 @@ jobs:
44
write_output_files: true
45
- name: List of changed files
46
if: steps.changed-files.outputs.any_changed == 'true'
47
- run: |
48
- cat ${{ github.workspace }}/.github/outputs/all_changed_files.txt
+ run: cat .github/outputs/all_changed_files.txt
49
50
verify-format:
51
runs-on: ubuntu-latest
@@ -58,9 +57,10 @@ jobs:
58
57
with:
59
submodules: false
60
persist-credentials: false
+ clean: false # preserve the files created by the previous job
61
62
- name: Run clang-format check
63
uses: pillo79/clang-format-action@main
64
65
clang-format-version: '19'
66
- check-files-from: ${{ github.workspace }}/.github/outputs/all_changed_files.txt
+ check-files-from: .github/outputs/all_changed_files.txt
0 commit comments