-
-
Notifications
You must be signed in to change notification settings - Fork 104
27 lines (21 loc) · 811 Bytes
/
Copy pathsamples-r3-tests.yml
File metadata and controls
27 lines (21 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Samples R3 migration tests
# Gating safety net for the R3 migration sample. Scoped to the single
# ReactivePropertySamples.R3.Tests project so it builds/restores only the R3 bridge
# and the migrated sample ViewModels - it does NOT pull in the WPF/Blazor/Prism/MahApps
# samples, keeping the check fast enough to run on every PR.
on:
pull_request:
branches: [ main, feature/r3-migration-support ]
env:
DOTNET_VERSION: 10.0.x
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Test R3 migration sample
run: dotnet test Samples/ReactivePropertySamples.R3.Tests/ReactivePropertySamples.R3.Tests.csproj --verbosity normal