Skip to content

Commit 1f52844

Browse files
committed
ci: set default test max points
1 parent d834541 commit 1f52844

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/classroom-autograding.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
const passed = parseInt(${{ steps.parse.outputs.passed || 0 }}, 10);
6565
const failed = parseInt(${{ steps.parse.outputs.failed || 0 }}, 10);
6666
const skipped = parseInt(${{ steps.parse.outputs.skipped || 0 }}, 10);
67-
const total = passed + failed + skipped;
67+
const total = (passed + failed + skipped) || 70;
6868
const result = `${passed}/${total}`
6969
7070
core.setOutput('total', total);

0 commit comments

Comments
 (0)