Bump the aspnetcore group across 1 directory with 8 updates #740
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: .NET Aspire Samples CI | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- "**/*.md" | |
- "**/*.gitignore" | |
- "**/*.gitattributes" | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
- "**/*.gitignore" | |
- "**/*.gitattributes" | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
sdk: [sdk-baseline, sdk-global-json] | |
exclude: | |
- os: windows-latest | |
sdk: sdk-baseline | |
runs-on: ${{ matrix.os }} | |
name: Build & Test Samples | |
env: | |
DOTNET_BASELINE_SDK_VERSION: '8.0.1xx' | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
DOTNET_MULTILEVEL_LOOKUP: false | |
DOTNET_INSTALL_DIR: ${{ matrix.os == 'ubuntu-latest' && '' || 'dotnet' }} | |
ASPIRE_ALLOW_UNSECURED_TRANSPORT: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dapr tool installer | |
uses: dapr/setup-dapr@v2 | |
with: | |
version: '1.13.0' | |
id: install-dapr | |
- name: Initialize Dapr (Ubuntu) | |
if: matrix.os == 'ubuntu-latest' | |
run: ${{ steps.install-dapr.outputs.dapr-path }} init --slim | |
- name: Initialize Dapr (Windows) | |
if: matrix.os == 'windows-latest' | |
run: ${{ steps.install-dapr.outputs.dapr-path }} init --slim | |
- name: "Install .NET SDK (baseline: ${{ env.DOTNET_BASELINE_SDK_VERSION }})" | |
if: matrix.os == 'ubuntu-latest' && matrix.sdk == 'sdk-baseline' | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_BASELINE_SDK_VERSION }} | |
- name: "Install .NET SDK (global.json)" | |
if: matrix.sdk == 'sdk-global-json' | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: ${{ matrix.os == 'ubuntu-latest' && './global.json' || '.\global.json' }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install linux-dev-certs | |
id: install-dev-certs | |
if: matrix.os == 'ubuntu-latest' | |
run: dotnet tool update -g linux-dev-certs && dotnet linux-dev-certs install | |
- name: Build | |
run: ${{ matrix.os == 'ubuntu-latest' && './build.sh' || '.\build.cmd' }} | |
env: | |
DAPR_CLI_PATH: ${{ steps.install-dapr.outputs.dapr-path }} | |
- name: Test | |
id: test | |
if: matrix.os == 'ubuntu-latest' | |
# Note that the space after the last double dash (--) is intentional | |
run: > | |
dotnet test ./tests/SamplesTests.sln | |
--logger console --logger trx --logger html --logger GitHubActions | |
--results-directory ./TestResults --blame | |
-- | |
RunConfiguration.CollectSourceInformation=true | |
env: | |
DAPR_CLI_PATH: ${{ steps.install-dapr.outputs.dapr-path }} | |
- name: Publish Test Results | |
if: (success() || steps.test.conclusion == 'failure') && matrix.os == 'ubuntu-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TestResults_${{ matrix.os }}_${{ matrix.sdk }} | |
path: ./TestResults |