Skip to content

Commit 990ff81

Browse files
committed
refactor static analysis workflow: adjust error message formatting for improved readability
1 parent 167f6b1 commit 990ff81

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/static-analysis-pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ jobs:
9393
exit 1
9494
fi
9595
if grep -n "ExpectIncompleteLifecycle" "$file"; then
96-
echo "::error::Found 'ExpectIncompleteLifecycle' in $file. This function is for internal testing only and should not be used in student tasks."
96+
echo "::error::Found 'ExpectIncompleteLifecycle' in $file." \
97+
"This function is for internal testing only and should not be used in student tasks."
9798
exit 1
9899
fi
99100
done

0 commit comments

Comments
 (0)