We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d834541 commit 1f52844Copy full SHA for 1f52844
.github/workflows/classroom-autograding.yml
@@ -64,7 +64,7 @@ jobs:
64
const passed = parseInt(${{ steps.parse.outputs.passed || 0 }}, 10);
65
const failed = parseInt(${{ steps.parse.outputs.failed || 0 }}, 10);
66
const skipped = parseInt(${{ steps.parse.outputs.skipped || 0 }}, 10);
67
- const total = passed + failed + skipped;
+ const total = (passed + failed + skipped) || 70;
68
const result = `${passed}/${total}`
69
70
core.setOutput('total', total);
0 commit comments