Skip to content

Merge branch 'apply-dotnet8-improvements' into production #174

Merge branch 'apply-dotnet8-improvements' into production

Merge branch 'apply-dotnet8-improvements' into production #174

Workflow file for this run

name: Plain .NET build
on: [workflow_dispatch, push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install wasm-tools for Blazor AOT compilation
run: dotnet workload install wasm-tools
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal