Code coverage (#11)

* code coverage

* enable codecov for GA
This commit is contained in:
Adam Hathcock
2024-07-04 09:43:16 +01:00
committed by GitHub
parent a0b723b2cb
commit f26f79c3c8
13 changed files with 47 additions and 30 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ Target(
Glob.Files(".", "**/*.Tests.Unit.csproj").Concat(Glob.Files(".", "**/*.Tests.csproj")),
async file =>
{
await RunAsync("dotnet", $"test {file} -c Release --no-build --verbosity=normal");
await RunAsync("dotnet", $"test {file} -c Release --no-build --no-restore --verbosity=normal /p:AltCover=true");
}
);