From e3b6b50e60165812d61fa751319d55a251bd0186 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 19 Oct 2025 12:16:48 +0000 Subject: [PATCH 1/2] Initial plan From 84f7d22ad8f437b067581a209ab3c825b0bef150 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 19 Oct 2025 12:22:04 +0000 Subject: [PATCH 2/2] fix coverage output path to avoid nested directory Co-authored-by: KSemenenko <4385716+KSemenenko@users.noreply.github.com> --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 64592fb..079d294 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -29,7 +29,7 @@ jobs: - name: Build run: dotnet build ManagedCode.TimeSeries.slnx --configuration Release --no-restore - name: Test and collect code coverage - run: dotnet test ManagedCode.TimeSeries.Tests/ManagedCode.TimeSeries.Tests.csproj --configuration Release --no-build -p:CollectCoverage=true -p:CoverletOutputFormat=lcov -p:CoverletOutput=ManagedCode.TimeSeries.Tests/ + run: dotnet test ManagedCode.TimeSeries.Tests/ManagedCode.TimeSeries.Tests.csproj --configuration Release --no-build -p:CollectCoverage=true -p:CoverletOutputFormat=lcov -p:CoverletOutput=./ - name: coveralls uses: coverallsapp/github-action@master with: