diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 061f5c45..4345e736 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,7 @@ jobs: shell: powershell run: | .\.sonar\scanner\dotnet-sonarscanner begin /k:"axuno_SmartFormat" /o:"axuno" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" - dotnet restore + dotnet restore SmartFormat.sln dotnet build SmartFormat.sln /verbosity:minimal /t:rebuild /p:configuration=release --no-restore - dotnet test --no-build --verbosity normal + dotnet test SmartFormat.sln --no-build --verbosity normal .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"