We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48d22cf commit 3273238Copy full SHA for 3273238
.github/workflows/main.yml
@@ -93,7 +93,7 @@ jobs:
93
parse_coverage() {
94
local csv_file=$1 col_missed=$2 col_covered=$3
95
awk -F',' -v m="$col_missed" -v c="$col_covered" \
96
- 'NR>1 && $1=="jackson-dataformat-xml" {
+ 'NR>1 && tolower($1)==tolower("jackson-dataformat-xml") {
97
total_missed += $m;
98
total_covered += $c;
99
}
0 commit comments