Update dotnet.yml

This commit is contained in:
Timothy Baldridge 2021-01-02 17:05:34 -07:00 committed by GitHub
parent 12499d317b
commit 205b203a90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,5 +21,21 @@ jobs:
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal -p:ParallelizeTestCollections=false
- name: Test Wabbajack.Common.Test
run: dotnet test --no-build --verbosity normal Wabbajack.Common.Test
- name: Test Compression.BSA.Test
run: dotnet test --no-build --verbosity normal Compression.BSA.Test
- name: Test Wabbajack.VirtualFileSystem.Test
run: dotnet test --no-build --verbosity normal Wabbajack.VirtualFileSystem.Test
- name: Test Wabbajack.Test
run: dotnet test --no-build --verbosity normal Wabbajack.Test
- name: Test Wabbajack.App.Test
run: dotnet test --no-build --verbosity normal Wabbajack.App.Test
- name: Test Wabbajack.Server.Test
run: dotnet test --no-build --verbosity normal Wabbajack.Server.Test
- name: Publish App
run: dotnet publish Wabbajack\Wabbajack.csproj --runtime win10-x64 --configuration Release /p:Platform=x64 -o c:\tmp\PublishApp --self-contained
- name: Publish Launcher
run: dotnet publish Wabbajack\Wabbajack.Launcher.csproj --runtime win10-x64 --configuration Release /p:Platform=x64 -o c:\tmp\PublishLauncher --self-contained