Enhance non-UTF-8 file check in Codacy workflow

This commit is contained in:
buildplan 2025-10-22 10:34:08 +01:00 committed by GitHub
parent e6eb329782
commit 8d58e084ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ jobs:
- name: Check for non-UTF-8 files - name: Check for non-UTF-8 files
run: | run: |
find . -type f -exec file --mime {} + | grep -v 'charset=utf-8' || true find . -name .git -prune -o -type f -exec file --mime {} + | grep -v -e 'charset=utf-8' -e 'charset=us-ascii' -e 'charset=binary' || echo "All files OK"
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI - name: Run Codacy Analysis CLI