workflows/test: add Build Elwig
All checks were successful
Test MS build / Test (push) Successful in 55s
Test MS build / Build (Release, x64) (push) Successful in 2m13s

This commit is contained in:
2023-11-20 23:51:26 +01:00
parent 8fe256c55a
commit b196cb25d2

View File

@ -16,6 +16,9 @@ jobs:
- name: Restore NuGet packages - name: Restore NuGet packages
shell: powershell shell: powershell
run: $(& nuget restore Elwig.sln; $a=$lastexitcode) | findstr x*; exit $a 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 - name: Run Tests
shell: powershell shell: powershell
run: $(& dotnet test Tests; $a=$lastexitcode) | findstr x*; exit $a run: $(& dotnet test Tests; $a=$lastexitcode) | findstr x*; exit $a