Skip to content

Merge pull request #154 from MarkDerman/CommandQueryNotification2 #138

Merge pull request #154 from MarkDerman/CommandQueryNotification2

Merge pull request #154 from MarkDerman/CommandQueryNotification2 #138

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Validation - All unit tests
on:
push:
branches:
- master
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.x.x
- name: Test on .Net 8
run: dotnet test TestsOnly.sln -f net8.0 --verbosity quiet --filter "TestCategory!=IntegrationTest"
- name: Test on .Net 9
run: dotnet test TestsOnly.sln -f net9.0 --verbosity quiet --filter "TestCategory!=IntegrationTest"
- name: Test on .Net 10
run: dotnet test TestsOnly.sln -f net10.0 --verbosity quiet --filter "TestCategory!=IntegrationTest"