Add an additional-file to V11 test harness #557
Workflow file for this run
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
| name: Tools tests | |
| # Triggers the workflow on pull request events that update the branch | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - 'tools/**.cs' | |
| - 'tools/**.csproj' | |
| - 'tools/**.sln' | |
| workflow_dispatch: | |
| inputs: | |
| reason: | |
| description: 'The reason for running the workflow' | |
| required: true | |
| default: 'Manual run' | |
| jobs: | |
| run-unit-tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| DOTNET_NOLOGO: true | |
| steps: | |
| - name: Check out our repo | |
| uses: actions/checkout@v6.0.2 | |
| - name: Setup .NET 8.0 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Run all tests | |
| run: | | |
| cd tools | |
| dotnet test --filter Name!~ExampleTests |