fix(ci): install dotCover global tool for sonarcloud workflow

This commit is contained in:
Oliver Booth 2023-08-27 13:13:13 +01:00
parent 74f957f0c2
commit 2445e36cfd
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
1 changed files with 5 additions and 0 deletions

View File

@ -44,6 +44,11 @@ jobs:
New-Item -Path .\.sonar\scanner -ItemType Directory
dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner
- name: Install dotCover
shell: powershell
run: |
dotnet tool install --global JetBrains.dotCover.GlobalTool
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any