File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change 8383 if [ -f "$TEXT_REPORT" ]; then
8484 PYLINT_SCORE=$(grep -Eo 'Your code has been rated at [0-9.]+/10' "$TEXT_REPORT" | grep -Eo '[0-9.]+/10' | head -n 1)
8585 echo "pylint_score=$PYLINT_SCORE" >> "$GITHUB_OUTPUT"
86- {
87- echo 'pylint_summary<<EOF'
88- tail -n 20 "$TEXT_REPORT"
89- echo EOF
90- } >> "$GITHUB_OUTPUT"
9186 else
9287 echo "pylint_score=N/A" >> "$GITHUB_OUTPUT"
93- echo "pylint_summary=No report found" >> "$GITHUB_OUTPUT"
9488 fi
9589
9690 # Coverage Percentage
@@ -116,14 +110,6 @@ jobs:
116110 | **Unit Tests** | ${{ steps.pytest.outcome == 'success' && '✅' || '❌' }} | `${{ steps.pytest.outcome }}` |
117111 | **Code Coverage** | 📊 | `${{ steps.metrics.outputs.coverage }}` |
118112
119- <details>
120- <summary>🔍 Pylint Details</summary>
121-
122- ```
123- ${{ steps.metrics.outputs.pylint_summary }}
124- ```
125- </details>
126-
127113 [Full Workflow Logs](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
128114
129115 - name : Generate Job Summary
You can’t perform that action at this time.
0 commit comments