Skip to content

Commit 1134600

Browse files
committed
fix(ci): clean up clang-format artifacts before REUSE check
The clang-format-action creates a failing-files.txt file when it detects formatting issues. Since we use continue-on-error for this step, the file persists and causes the REUSE compliance check to fail. Delete this file before running REUSE check. Also fix corrupted header in coverage.yml and update .reuse/config to exclude temporary/local files from compliance checks.
1 parent d2f26ba commit 1134600

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jobs:
4444
echo "Please run 'clang-format -i' on modified files locally."
4545
echo "This is a warning only and will not block the build."
4646
47+
- name: Clean up clang-format artifacts
48+
run: rm -f failing-files.txt
49+
4750
- name: Check REUSE compliance
4851
uses: fsfe/reuse-action@v2
4952

0 commit comments

Comments
 (0)