diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 037678e5..53acea00 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -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 + +