diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 3ed9560..3ef27da 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -16,6 +16,8 @@ jobs: uses: microsoft/setup-msbuild@v1.1 - name: Setup NuGet uses: nuget/setup-nuget@v1 + - name: Restore NuGet packages + run: nuget restore Elwig/Elwig.csproj - name: Build Installer shell: cmd /U /C {0} - run: $(& msbuild -verbosity:minimal Installer/Installer.wixproj -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }}; $a=$lastexitcode) | findstr x*; exit $a + run: $(& msbuild -verbosity:quiet Installer/Installer.wixproj -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }}; $a=$lastexitcode) | findstr x*; exit $a