Skip to content

Show client names in status window #314

Show client names in status window

Show client names in status window #314

name: Run Unit Tests
concurrency: ${{ github.workflow }}
on: [push, pull_request]
jobs:
restore_build_test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
# Setup: Need .NET Core for restore, MSBuild for build, and VSTest for test
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup VSTest
uses: darenm/[email protected]
# Restore, build, test
- name: Restore
run: dotnet restore
- name: Build
run: msbuild
- name: Test
run: vstest.console WgServerforWindows.Tests\bin\Debug\net80-windows\WgServerforWindows.Tests.dll