|
@@ -97,7 +97,7 @@ jobs:
|
|
|
-
|
|
|
name: Create summary
|
|
|
run: |
|
|
|
- teststat -markdown $(find /tmp/reports -type f -name '*.json' -print0 | xargs -0) >> $GITHUB_STEP_SUMMARY
|
|
|
+ find /tmp/reports -type f -name '*-go-test-report.json' -exec teststat -markdown {} \+ >> $GITHUB_STEP_SUMMARY
|
|
|
|
|
|
docker-py:
|
|
|
runs-on: ubuntu-20.04
|
|
@@ -299,7 +299,7 @@ jobs:
|
|
|
-
|
|
|
name: Create summary
|
|
|
run: |
|
|
|
- teststat -markdown $(find /tmp/reports -type f -name '*.json' -print0 | xargs -0) >> $GITHUB_STEP_SUMMARY
|
|
|
+ find /tmp/reports -type f -name '*-go-test-report.json' -exec teststat -markdown {} \+ >> $GITHUB_STEP_SUMMARY
|
|
|
|
|
|
integration-cli-prepare:
|
|
|
runs-on: ubuntu-20.04
|
|
@@ -438,4 +438,4 @@ jobs:
|
|
|
-
|
|
|
name: Create summary
|
|
|
run: |
|
|
|
- teststat -markdown $(find /tmp/reports -type f -name '*.json' -print0 | xargs -0) >> $GITHUB_STEP_SUMMARY
|
|
|
+ find /tmp/reports -type f -name '*-go-test-report.json' -exec teststat -markdown {} \+ >> $GITHUB_STEP_SUMMARY
|