Skip to content

Commit e4eab4b

Browse files
authored
Update classroom.yml
1 parent 0806013 commit e4eab4b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/classroom.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ jobs:
3939
continue-on-error: true
4040
run: |
4141
mvn -ntp test -Dtest=EdgeCaseTest
42-
echo "exit_code=$?" >> $GITHUB_ENV
43-
true # suppress failure after capturing exit code
44-
42+
EXIT_CODE=$?
43+
echo "exit_code=$EXIT_CODE" >> $GITHUB_ENV
44+
[ $EXIT_CODE -eq 0 ] || echo "⚠️ Edge case test failed but continuing"
45+
4546
# 🧮 Scoring and conditional failure
4647
- name: Calculate and Report Points
4748
run: |

0 commit comments

Comments
 (0)