Skip to content

Commit b6274dd

Browse files
committed
ci: fix syntax error
1 parent 672b500 commit b6274dd

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
@@ -74,7 +74,7 @@ jobs:
7474
const passed = parseInt(${{ steps.parse.outputs.passed || 0 }}, 10);
7575
const failed = parseInt(${{ steps.parse.outputs.failed || 0 }}, 10);
7676
const skipped = parseInt(${{ steps.parse.outputs.skipped || 0 }}, 10);
77-
const total = ${env.MAX_TESTS};
77+
const total = ${{ env.MAX_TESTS }};
7878
const result = `${passed}/${total}`
7979
8080
core.setOutput('total', total);

0 commit comments

Comments
 (0)