Skip to content

Commit cc28790

Browse files
committed
[Debug] (config) Print log message about file tree.
1 parent d8b9ee6 commit cc28790

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/organize_and_generate_test_cov_reports.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ jobs:
5858

5959
- name: Combine all testing code coverage result files with all test types
6060
if: ${{ inputs.test_type == 'all-test' }}
61-
run: coverage combine --data-file=.coverage.${{ inputs.test_type }} .coverage.*
61+
run: |
62+
pwd
63+
ls -la
64+
coverage combine --data-file=.coverage.${{ inputs.test_type }} .coverage.*
6265
6366
- name: Report testing coverage of project code
6467
run: coverage report -m --data-file=.coverage.${{ inputs.test_type }}

0 commit comments

Comments
 (0)