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 17b3dd1 commit 4984bd1Copy full SHA for 4984bd1
action.yml
@@ -47,9 +47,9 @@ runs:
47
Add(covs, Filename(d, f));
48
od;
49
Print("Merging coverage results from ", covs, "\n");
50
- r := MergeLineByLineProfiles(covs);
+ r := MergeLineByLineProfiles(covs);;
51
# filtered out unwanted other packages to avoid bad coverage interaction
52
- r.line_info := Filtered(r.line_info, x -> not StartsWith( x[1], "$GAPROOT/" ) );
+ r.line_info := Filtered(r.line_info, x -> not StartsWith( x[1], "$GAPROOT/" ) );;
53
Print("Outputting JSON\n");
54
OutputJsonCoverage(r, "gap-coverage.json");
55
QUIT_GAP(0);
0 commit comments