Skip to content

Commit 4dd3b8c

Browse files
committed
[Debug] (config) Print log message about file tree.
1 parent 839fc83 commit 4dd3b8c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/organize_and_generate_test_cov_reports.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,11 @@ jobs:
6464
run: coverage combine --data-file=.coverage.${{ inputs.test_type }} .coverage.*
6565

6666
- name: Report testing coverage of project code
67-
run: coverage report -m --data-file=.coverage.${{ inputs.test_type }}
67+
run: |
68+
pwd
69+
ls -la
70+
ls -la ./test_gh_workflow
71+
coverage report -m --data-file=.coverage.${{ inputs.test_type }}
6872
6973
- name: General testing coverage report as XML format with ${{ inputs.test_type }}
7074
run: coverage xml --data-file=.coverage.${{ inputs.test_type }} -o coverage_${{ inputs.test_type }}.xml

0 commit comments

Comments
 (0)