Skip to content

Commit d2a0dc6

Browse files
committed
fix CI
1 parent d46fe3c commit d2a0dc6

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,14 @@ jobs:
224224
else
225225
echo "✅ All tests passed successfully." >> $GITHUB_STEP_SUMMARY
226226
fi
227+
228+
echo "#### PHPStan Results:" >> $GITHUB_STEP_SUMMARY
229+
230+
if [ "${{ steps.phpstan.outputs.phpstan_errors }}" -eq 0 ]; then
231+
echo "🧹 PHPStan: Passed (0 errors)" >> $GITHUB_STEP_SUMMARY
232+
else
233+
echo "⚠️ PHPStan: ${{ steps.phpstan.outputs.phpstan_errors }} errors detected" >> $GITHUB_STEP_SUMMARY
234+
fi
227235
228236
- name: 📲 Notify Telegram
229237
if: always()

0 commit comments

Comments
 (0)