Skip to content

chore(deps): update microsoft.aspnetcore to 10.0.5 #1165

chore(deps): update microsoft.aspnetcore to 10.0.5

chore(deps): update microsoft.aspnetcore to 10.0.5 #1165

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"