Skip to content

Commit c4ce221

Browse files
committed
fix CI
1 parent 0ee08d7 commit c4ce221

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,19 +215,17 @@ jobs:
215215
echo "📁 Mongo Host: $MONGO_HOST" >> $GITHUB_STEP_SUMMARY
216216
echo "" >> $GITHUB_STEP_SUMMARY
217217
218-
echo "#### PHPUnit Results:" >> $GITHUB_STEP_SUMMARY
218+
# echo "#### PHPUnit Results:" >> $GITHUB_STEP_SUMMARY
219219
tail -n 20 phpunit.log >> $GITHUB_STEP_SUMMARY
220220
echo "" >> $GITHUB_STEP_SUMMARY
221221

222-
echo "#### PHPTESTS Results:" >> $GITHUB_STEP_SUMMARY
223-
224222
if grep -q "FAILURES!" phpunit.log; then
225223
echo "❌ Some tests failed." >> $GITHUB_STEP_SUMMARY
226224
else
227225
echo "✅ All tests passed successfully." >> $GITHUB_STEP_SUMMARY
228226
fi
229227

230-
echo "#### PHPStan Results:" >> $GITHUB_STEP_SUMMARY
228+
# echo "#### PHPStan Results:" >> $GITHUB_STEP_SUMMARY
231229

232230
if [ "${{ steps.phpstan.outputs.phpstan_errors }}" -eq 0 ]; then
233231
echo "🧹 PHPStan: Passed (0 errors)" >> $GITHUB_STEP_SUMMARY
@@ -316,8 +314,6 @@ jobs:
316314
-H "Content-Type: application/json" \
317315
-d "$PAYLOAD")
318316
319-
echo "#### Telegram Notification Results:" >> $GITHUB_STEP_SUMMARY
320-
321317
if [ "$RESPONSE" -ne 200 ]; then
322318
echo "⚠️ Telegram notification failed (HTTP $RESPONSE)" >> $GITHUB_STEP_SUMMARY
323319
cat /tmp/tg_resp.json >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)