File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,22 @@ jobs:
5454 with :
5555 path : .
5656 - name : List coverage files
57- run : ls -l coverage-lcov-*.info || echo "No coverage files found"
57+ run : |
58+ echo "Looking for coverage files in downloaded artifacts..."
59+ find . -name "*.info" -type f | head -20
60+ echo "---"
61+ ls -la coverage-lcov-*/ || echo "No coverage directories found"
5862 - name : Show coverage files content
5963 run : |
60- for f in coverage-lcov-*.info; do
61- echo "\n==== $f ===="
62- cat "$f"
64+ for dir in coverage-lcov-*/; do
65+ if [ -d "$dir" ]; then
66+ echo "==== Contents of $dir ===="
67+ ls -la "$dir"
68+ for f in "$dir"*.info; do
69+ if [ -f "$f" ]; then
70+ echo "==== $f ===="
71+ cat "$f"
72+ fi
73+ done
74+ fi
6375 done || echo "No coverage files to show"
You can’t perform that action at this time.
0 commit comments