Merge pull request #154 from MarkDerman/CommandQueryNotification2 #138
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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" | |