We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d46fe3c commit d2a0dc6Copy full SHA for d2a0dc6
1 file changed
.github/workflows/test.yml
@@ -224,6 +224,14 @@ jobs:
224
else
225
echo "✅ All tests passed successfully." >> $GITHUB_STEP_SUMMARY
226
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
235
236
- name: 📲 Notify Telegram
237
if: always()
0 commit comments