Skip to content

Apply .NET 8 improvements #168

Apply .NET 8 improvements

Apply .NET 8 improvements #168

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