File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 8
8
DOTNET_CLI_TELEMETRY_OPTOUT : true
9
9
DOTNET_NOLOGO : true
10
10
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION : true
11
+ REPORTGENERATOR_LICENSE : ${{ secrets.REPORTGENERATOR_LICENSE }}
11
12
TERM : xterm
12
13
13
14
jobs :
57
58
with :
58
59
name : TestResults-${{ runner.os }}.trx
59
60
path : " *.trx"
61
+ - name : 📤 Upload coverage report
62
+ if : matrix.os == 'ubuntu-latest'
63
+ uses : actions/upload-artifact@v4
64
+ with :
65
+ name : Coverage Report
66
+ path : coverage
60
67
- name : ☂️ Upload coverage report to Codecov
61
68
env :
62
69
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 39
39
<ItemGroup >
40
40
<CoverageReport Include =" $(VSTestResultsDirectory)/*/coverage.cobertura.xml" />
41
41
</ItemGroup >
42
- <ReportGenerator ReportFiles =" @(CoverageReport)" TargetDirectory =" $(CoverageReportDirectory)" ReportTypes =" Html ;TextSummary" />
42
+ <ReportGenerator ReportFiles =" @(CoverageReport)" TargetDirectory =" $(CoverageReportDirectory)" ReportTypes =" HtmlInline ;TextSummary" />
43
43
</Target >
44
44
45
45
<!-- Because of https://github.com/microsoft/vstest/issues/2378 -->
You can’t perform that action at this time.
0 commit comments