Add debug log

This commit is contained in:
Dominique RIGHETTO 2022-11-01 15:08:50 +01:00 committed by GitHub
parent 441c8f1c5f
commit 0bb7d481ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,6 +26,9 @@ jobs:
uses: tj-actions/changed-files@v34
- name: Analyze all added or modified files
run: |
echo "Modified files:"
echo ${{ steps.changed-files.outputs.all_changed_files }}
echo "Check them..."
for modified_file in ${{ steps.changed-files.outputs.all_changed_files }}
do
matches=$(grep -Ec "^/[a-zA-Z0-9\._]+" $modified_file)