Skip to content

Commit

Permalink
chore: update prcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Aug 31, 2024
1 parent cde76ba commit 2181339
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,13 @@ jobs:
- name: Verify script logs
run: |
# Ensure that certain expected outputs are present in the logs
if grep -q "Cleaning Memory..." script_output.log; then
if grep -q "Cleaning memory..." script_output.log; then
echo "Memory cleaning step executed."
else
echo "Memory cleaning step missing."
exit 1
fi
if grep -q "by: Gabriel Logan" script_output.log; then
echo "Author information present."
else
echo "Author information missing."
exit 1

0 comments on commit 2181339

Please sign in to comment.