chore(deps): update microsoft.extensions to 10.0.5 #1168
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: CloudShop Example Tests | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| push: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| integration-tests: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET 10 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Cache NuGet packages | |
| uses: actions/cache@v5 | |
| continue-on-error: true | |
| with: | |
| path: ~/.nuget/packages | |
| key: nuget-cloudshop-${{ hashFiles('examples/CloudShop/**/*.csproj') }} | |
| restore-keys: | | |
| nuget-cloudshop- | |
| - name: Expose GitHub Actions Runtime | |
| uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env['ACTIONS_RUNTIME_TOKEN']); | |
| core.exportVariable('ACTIONS_RESULTS_URL', process.env['ACTIONS_RESULTS_URL']); | |
| - name: Build | |
| run: dotnet build examples/CloudShop/CloudShop.Tests/CloudShop.Tests.csproj -c Release | |
| - name: Run integration tests | |
| run: dotnet run --project examples/CloudShop/CloudShop.Tests/CloudShop.Tests.csproj -c Release --no-build | |
| env: | |
| ASPIRE_ALLOW_UNSECURED_TRANSPORT: "true" |