aides-repo-api/scripts/coverage-badge.sh

10 lines
485 B
Bash
Raw Permalink Normal View History

2024-12-26 13:42:54 +00:00
#!/bin/bash
COVERAGE=$(go tool cover -func=coverage.out | grep total | awk '{print $3}' | sed 's/%//')
cat <<EOF > coverage-badge.svg
2024-12-26 15:40:16 +00:00
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20">
<rect width="1100" height="20" fill="#555"/>
<rect x="60" width="50" height="20" fill="#4c1"/>
<text x="5" y="14" fill="#fff" font-family="Verdana" font-size="11">coverage</text>
<text x="70" y="14" fill="#fff" font-family="Verdana" font-size="11">${COVERAGE}%</text>
2024-12-26 13:42:54 +00:00
</svg>
EOF