Add Fortunes endpoint that returns RazorComponentResult to the Minima… #7
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: ASP.NET Benchmarks CI | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- "**/*.md" | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
name: Build & Test | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
SuppressNETCoreSdkPreviewMessage: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install .NET SDK (global.json) | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: global.json | |
- name: Print .NET info | |
run: dotnet --info | |
- name: Build | |
run: dotnet build ./src/BenchmarksApps.sln | |
- name: Test | |
run: > | |
dotnet test ./src/BenchmarksApps.sln | |
--no-build --logger console --logger trx --logger html --logger GitHubActions | |
--results-directory ./TestResults --blame | |
- name: Publish Test Results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: TestResults_${{ matrix.os }} | |
path: ./TestResults |