File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -30,19 +30,20 @@ jobs:
3030 run : dotnet build --no-restore
3131
3232 - name : Test
33- run : dotnet test --no-build /p:CollectCoverage=true /p:CoverletOutput=CoverageResults/ /p:CoverletOutputFormat=opencover
34-
33+ # run: dotnet test --no-build /p:CollectCoverage=true /p:CoverletOutput=CoverageResults/ /p:CoverletOutputFormat=opencover
34+ run : dotnet test --no-build /p:CollectCoverage=true /p:CoverletOutput=${{ github.workspace }}/CoverageRoot/ /p:CoverletOutputFormat=opencover
35+
3536 - name : NDepend
3637 uses : ndepend/ndepend-action@v1
3738 with :
3839 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3940 license : ${{ secrets.NDEPENDLICENSE }}
40- coveragefolder : ManagedCode.Storage.Tests/CoverageResults
41+ coveragefolder : ${{ github.workspace }}/CoverageRoot
4142 baseline : main_recent
4243 retention-days : 15
4344 # stopIfQGFailed: true
4445
4546 - name : Upload coverage reports to Codecov
4647 uses : codecov/codecov-action@v3
4748 env :
48- CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
49+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments