We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5d65fd commit 28b67ddCopy full SHA for 28b67dd
1 file changed
.github/workflows/static_analysis_and_tests.yml
@@ -54,10 +54,22 @@ jobs:
54
with:
55
path: .
56
- name: List coverage files
57
- run: ls -l coverage-lcov-*.info || echo "No coverage files found"
+ 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"
62
- name: Show coverage files content
63
run: |
- for f in coverage-lcov-*.info; do
- echo "\n==== $f ===="
- 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
75
done || echo "No coverage files to show"
0 commit comments