Skip to content

Commit

Permalink
⚗️ Test for CI System (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
soo-bak committed Jul 8, 2024
1 parent cea35f0 commit 0aaba05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/UnitTestsAndCodeCoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ jobs:
function formatCoverage(coverage) {
const coverageNum = parseFloat(coverage);
if (coverageNum === 100) {
return \`\${\\rm\\color{#00FF00}100%}\$\`;
return \`\${\\\\rm\\\\color{#00FF00}100%}\$\`;
} else if (coverageNum >= 80) {
return \`\${\\rm\\color{#FFD700}\${coverageNum}%}\$\`;
return \`\${\\\\rm\\\\color{#FFD700}\${coverageNum}%}\$\`;
} else {
return \`\${\\rm\\color{#8B0000}\${coverageNum}%}\$\`;
return \`\${\\\\rm\\\\color{#8B0000}\${coverageNum}%}\$\`;
}
}
Expand Down

0 comments on commit 0aaba05

Please sign in to comment.