Skip to content

Clarified the scope of support for Blazor #228

Clarified the scope of support for Blazor

Clarified the scope of support for Blazor #228

name: Unit testing
on:
pull_request:
branches: [ main ]
env:
DOTNET_VERSION: 8.0.x
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore ReactiveProperty.sln
- name: Test
run: dotnet test ReactiveProperty.sln --no-restore --verbosity normal