Skip to content

Commit b17e4b9

Browse files
committed
junit
1 parent f371d71 commit b17e4b9

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)