Skip to content

Commit 500f5c9

Browse files
committed
Test base and edge case
1 parent e32532d commit 500f5c9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/classroom.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@ jobs:
5050
id: edge
5151
continue-on-error: true
5252
run: |
53+
set +e
5354
mvn -ntp test -Dtest=EdgeCaseTest
54-
if [ $? -eq 0 ]; then
55+
EXIT_CODE=$?
56+
if [ $EXIT_CODE -eq 0 ]; then
5557
echo "result=1/1" >> $GITHUB_OUTPUT
5658
else
5759
echo "result=0/1" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)