File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,10 +53,24 @@ jobs:
5353 fail_ci_if_error : true
5454 verbose : true
5555
56+ - name : Debug - Check if junit.xml exists
57+ run : |
58+ if [ -f junit.xml ]; then
59+ echo "✅ junit.xml exists"
60+ ls -la junit.xml
61+ echo "=== First 10 lines of junit.xml ==="
62+ head -10 junit.xml
63+ else
64+ echo "❌ junit.xml not found"
65+ echo "Files in current directory:"
66+ ls -la
67+ fi
68+
5669 - name : Upload test results to Codecov
5770 if : ${{ !cancelled() }}
5871 uses : codecov/test-results-action@v1
5972 with :
73+ files : ./junit.xml
6074 token : ${{ secrets.CODECOV_TOKEN }}
6175
6276 memory-check :
@@ -118,6 +132,7 @@ jobs:
118132 if : ${{ !cancelled() }}
119133 uses : codecov/test-results-action@v1
120134 with :
135+ files : ./junit.xml
121136 token : ${{ secrets.CODECOV_TOKEN }}
122137
123138 lint :
You can’t perform that action at this time.
0 commit comments