diff --git a/.drone.yml b/.drone.yml index 40f61c9..c1b78b1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -18,7 +18,7 @@ steps: - name: tests image: mcr.microsoft.com/dotnet/sdk:8.0 commands: - - cd Sources/ + - cd ./Qwirkle - dotnet restore QwirkleWithoutMaui.sln - dotnet test QwirkleWithoutMaui --no-restore depends_on: [build] @@ -32,7 +32,7 @@ steps: sonar_token: from_secret: SECRET_SONAR_LOGIN commands: - - cd Sources/ + - cd ./Qwirkle - dotnet restore QwirkleWithoutMaui.sln - dotnet sonarscanner begin /k:QwirkleSonar /d:sonar.host.url=$${PLUGIN_SONAR_HOST} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions="Tests/**" /d:sonar.login=$${PLUGIN_SONAR_TOKEN} - dotnet build QwirkleWithoutMaui.sln -c Release --no-restore