From b196cb25d25ef1fc443df87ceb613e28149a0aaf Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 20 Nov 2023 23:51:26 +0100 Subject: [PATCH] workflows/test: add Build Elwig --- .gitea/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 7300540..f78a8da 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -16,6 +16,9 @@ jobs: - name: Restore NuGet packages shell: powershell run: $(& nuget restore Elwig.sln; $a=$lastexitcode) | findstr x*; exit $a + - name: Build Elwig + shell: powershell + run: $(& msbuild -verbosity:quiet Elwig/Elwig.csproj -property:Configuration=Debug; $a=$lastexitcode) | findstr x*; exit $a - name: Run Tests shell: powershell run: $(& dotnet test Tests; $a=$lastexitcode) | findstr x*; exit $a