Skip to content

Commit 3273238

Browse files
committed
Fix JaCoCo in CI
1 parent 48d22cf commit 3273238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
parse_coverage() {
9494
local csv_file=$1 col_missed=$2 col_covered=$3
9595
awk -F',' -v m="$col_missed" -v c="$col_covered" \
96-
'NR>1 && $1=="jackson-dataformat-xml" {
96+
'NR>1 && tolower($1)==tolower("jackson-dataformat-xml") {
9797
total_missed += $m;
9898
total_covered += $c;
9999
}

0 commit comments

Comments
 (0)