Skip to content

Add netstandard2.0 and net462 support, add Blazor WASM sample and ena… #15

Add netstandard2.0 and net462 support, add Blazor WASM sample and ena…

Add netstandard2.0 and net462 support, add Blazor WASM sample and ena… #15

Workflow file for this run

name: CI (Build & Test)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build Solution
run: dotnet build --configuration Release --no-restore
- name: Run Tests
run: dotnet test --configuration Release --no-build --verbosity normal