Add both test suites back in; both pass individually... #110
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build, Publish, Tag | |
on: | |
push: | |
branches: [ "master", "release/**", "features/**" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
env: | |
Solution_Name: PrimS.Telnet.sln | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
6.0.x | |
8.0.x | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v2 | |
- name: Install nuget | |
run: Invoke-WebRequest https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -OutFile Nuget.exe | |
- name: Nuget restore | |
run: Nuget.exe restore | |
- name: Build Debug | |
run: msbuild $env:Solution_Name /p:Configuration=Debug /p:Platform="Any CPU" | |
- name: Telnet.CiTests | |
uses: rusty-bender/vstest-action@main | |
with: | |
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: rusty-bender/vstest-action@main | |
with: | |
testAssembly: PrimS.Telnet.*.CiTests.dll | |
searchFolder: ./**/bin/Debug/**/ | |
runInParallel: true | |