Skip to content

Stabilize the unit test #11

Stabilize the unit test

Stabilize the unit test #11

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