build(deps): bump Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0 in /csharp/PhoneNumbers.Extensions.Test in the phonenumbers_extensions_test_minor_patch_updates group #64
Workflow file for this run
This file contains 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: run_performance_tests_windows | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
run_performance_tests_windows: | |
runs-on: windows-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.x | |
- name: Run performance tests | |
run: dotnet run -c Release --framework net9.0 | |
working-directory: ./csharp/PhoneNumbers.PerformanceTest |