From 525a3bf2b3875f40d03ab0671aa072c4fd72a13e Mon Sep 17 00:00:00 2001 From: Westin Musser <127992899+westin-m@users.noreply.github.com> Date: Wed, 23 Oct 2024 14:27:03 -0700 Subject: [PATCH] perhaps I treated you too harshly --- .github/workflows/dotnetcore.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index f389e98da..1c5826f15 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -57,17 +57,13 @@ jobs: - name: Test with .NET 6.0.x run: dotnet test --no-restore --no-build Microsoft.Identity.Web.sln -f net6.0 -v normal -p:FROM_GITHUB_ACTION=true --configuration Release --collect "Xplat Code Coverage" --filter "(FullyQualifiedName!~Microsoft.Identity.Web.Test.Integration)&(FullyQualifiedName!~WebAppUiTests)&(FullyQualifiedName!~IntegrationTests)&(FullyQualifiedName!~TokenAcquirerTests)" - # - name: Upload Coverage Report - # uses: actions/upload-artifact@v4 - # with: - # path: "./**/coverage.cobertura.xml" - - name: Create code coverage report run: | dotnet tool install -g dotnet-reportgenerator-globaltool reportgenerator -reports:./**/coverage.cobertura.xml -targetdir:CodeCoverage -reporttypes:'MarkdownSummaryGithub;Cobertura' - name: Write to Job Summary + shell: bash run: cat CodeCoverage/SummaryGithub.md >> $GITHUB_STEP_SUMMARY - name: Test with .NET 7.0.x