Skip to content

Commit 6d640f9

Browse files
committed
update: run-test
1 parent bf6df0e commit 6d640f9

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/run-test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Java CI
1+
name: Java CI
22

33
on:
44
push:
@@ -26,10 +26,16 @@ jobs:
2626
- name: Build & Run Tests (no Tomcat)
2727
run: ant -noinput -buildfile ci-build.xml test
2828

29+
- name: List test result files
30+
if: always()
31+
run: |
32+
echo "=== Checking build/test-results ==="
33+
ls -R build || true
34+
2935
- name: Report test results
3036
if: always()
3137
uses: dorny/test-reporter@v2
3238
with:
3339
name: Ant Unit Tests
34-
path: build/test-results/*.xml
40+
path: "**/test-results/*.xml"
3541
reporter: java-junit

0 commit comments

Comments
 (0)