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