diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b99d062..b6f8a4d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,15 @@ jobs: - name: Telnet.CiTests uses: microsoft/vstest-action@v1.0.0 with: - testAssembly: PrimS.Telnet.*CiTests.dll + testAssembly: PrimS.Telnet.CiTests.dll + searchFolder: ./**/bin/Debug/**/ + runInParallel: true + + # Can't apparently run both full fat and core test suites together.' + - name: Telnet.*.CiTests + uses: microsoft/vstest-action@v1.0.0 + with: + testAssembly: PrimS.Telnet.*.CiTests.dll searchFolder: ./**/bin/Debug/**/ runInParallel: true @@ -103,7 +111,7 @@ jobs: - name: Publish to GitHub run: dotnet nuget push "Telnet.$Env:NuGetVersionV2ext.nupkg" --api-key ${{ secrets.PUBLISH_TO_GITHUB_PACKAGES }} --source "https://nuget.pkg.github.com/9swampy/index.json" - #Login to Nuget 9swampy->Api Keys and regenerate, copy to NUGET_APIKEY + # Login to Nuget 9swampy->Api Keys and regenerate, copy to NUGET_APIKEY - name: Publish to Nuget if: github.ref == 'refs/heads/master' run: nuget push "Telnet.$Env:NuGetVersionV2ext.nupkg" ${{ secrets.NUGET_APIKEY }} -source https://api.nuget.org/v3/index.json