Skip to content

Commit 1bc5375

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

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/classroom.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,9 @@ jobs:
3838
id: edge
3939
continue-on-error: true
4040
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-
41+
echo "exit_code=0" >> $GITHUB_ENV
42+
mvn -ntp test -Dtest=EdgeCaseTest || echo "exit_code=1" >> $GITHUB_ENV
43+
4644
# 🧮 Scoring and conditional failure
4745
- name: Calculate and Report Points
4846
run: |

0 commit comments

Comments
 (0)