Skip to content

test

test #10

Workflow file for this run

name: test
on:
workflow_dispatch:
jobs:
tests-and-reports:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Run Tests and Generate TRX Report
run: dotnet test UnitTest/UnitTest.csproj --logger "trx;LogFileName=test-results.trx" --collect:"XPlat Code Coverage"