Skip to content

Commit fcea902

Browse files
committed
ci: fix syntax errors
1 parent b6274dd commit fcea902

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/classroom-autograding.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,10 +291,10 @@ jobs:
291291
292292
// Parse get-tests-score result (e.g., 34/42), scale to 70%
293293
const testsResult = '${{ steps.get-tests-score.outputs.result }}';
294-
const tests = parseResult(testsResult, ${env.TEST_SCORE_MARKS});
294+
const tests = parseResult(testsResult, ${{ env.TEST_SCORE_MARKS }});
295295
// Parse get-agent-score result (e.g., 27/100), scale to 30%
296296
const aiResult = '${{ steps.get-agent-score.outputs.result }}';
297-
const ai = parseResult(aiResult, ${env.AGENT_SCORE_MARKS});
297+
const ai = parseResult(aiResult, ${{ env.AGENT_SCORE_MARKS }});
298298
// Sum
299299
const totalEarned = tests.earned + ai.earned;
300300
const totalAvailable = tests.available + ai.available;

0 commit comments

Comments
 (0)