We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0806013 commit e4eab4bCopy full SHA for e4eab4b
.github/workflows/classroom.yml
@@ -39,9 +39,10 @@ jobs:
39
continue-on-error: true
40
run: |
41
mvn -ntp test -Dtest=EdgeCaseTest
42
- echo "exit_code=$?" >> $GITHUB_ENV
43
- true # suppress failure after capturing exit code
44
-
+ EXIT_CODE=$?
+ echo "exit_code=$EXIT_CODE" >> $GITHUB_ENV
+ [ $EXIT_CODE -eq 0 ] || echo "⚠️ Edge case test failed but continuing"
45
+
46
# 🧮 Scoring and conditional failure
47
- name: Calculate and Report Points
48
0 commit comments