Skip to content

Fix: running tests by "dotnet test" CLI didn't work well #5

Fix: running tests by "dotnet test" CLI didn't work well

Fix: running tests by "dotnet test" CLI didn't work well #5

Workflow file for this run

name: unit tests
on:
push:
branches:
- main
jobs:
perform-unit-tests:
runs-on: ubuntu-latest
steps:
# Checkout the code
- uses: actions/checkout@v4
# Install .NET SDK
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
# Perform unit tests
- name: Perform unit tests
run: dotnet run --project ./Tests --noresult --labels=All