We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b96a93c + 1bb601d commit 33d0867Copy full SHA for 33d0867
.github/workflows/dotnet.yml
@@ -50,6 +50,8 @@ jobs:
50
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
51
shell: powershell
52
run: |
53
+ dotnet tool install --global dotnet-coverage
54
.\.sonar\scanner\dotnet-sonarscanner begin /k:"astar-development_astar-dev-functional-extensions" /o:"astar-development" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
55
dotnet build
56
+ dotnet-coverage collect 'dotnet test --filter "FullyQualifiedName!~Tests.EndToEnd"' -f xml -o 'coverage.xml'
57
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
0 commit comments