nuget-rest-tests: Bump Microsoft.Identity.Client from 4.81.0 to 4.82.1 #80
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 REST Tests | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| paths: | |
| - 'client-samples/dotnet/rest/**' | |
| - '.github/workflows/dotnet-rest-ci.yml' | |
| pull_request: | |
| branches: [ "main" ] | |
| paths: | |
| - 'client-samples/dotnet/rest/**' | |
| - '.github/workflows/dotnet-rest-ci.yml' | |
| jobs: | |
| dotnet-rest-ci: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| working-directory: ./client-samples/dotnet/rest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore api-template && dotnet restore api-template.tests | |
| - name: Build | |
| run: dotnet build api-template --no-restore --configuration Release | |
| - name: Test | |
| run: dotnet test api-template.tests |