Skip to content

Commit

Permalink
Split Core and full fat test suites.
Browse files Browse the repository at this point in the history
  • Loading branch information
9swampy committed Apr 17, 2024
1 parent dd8341b commit aeb53a0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit aeb53a0

Please sign in to comment.