We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aa3cfd commit 06e9be0Copy full SHA for 06e9be0
.github/workflows/dotnet.yml
@@ -30,19 +30,10 @@ jobs:
30
run: dotnet build --no-restore
31
32
- name: Test
33
- run: dotnet test --no-build /p:CollectCoverage=true /p:CoverletOutput=codecoverage /p:CoverletOutputFormat=opencover
+ run: dotnet test --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
34
35
36
- - name: Copy and rename *.opencover.xml files to CoverageRoot using parts of the path
37
- run: |
38
- for %%f in (**\*.opencover.xml) do (
39
- set "filename=%%f"
40
- setlocal enabledelayedexpansion
41
- set "unique_name=!filename:\=_!"
42
- copy "%%f" "Coverage\!unique_name!"
43
- endlocal
44
- )
45
- shell: cmd
+
46
47
48
0 commit comments