deps(test): update dependency microsoft.build.locator to 1.11.1 #1960
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: .NET Testing | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| concurrency: | |
| group: testing-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 9.x | |
| - name: Linting | |
| run: dotnet format --verify-no-changes | |
| - name: Create Kubernetes Cluster | |
| uses: helm/[email protected] | |
| - name: Execute Tests | |
| run: dotnet test --configuration ${{ runner.debug == '1' && 'Debug' || 'Release' }} |