Skip to content

fix(build): reference RMC.Numerics NuGet package instead of sibling c… #3

fix(build): reference RMC.Numerics NuGet package instead of sibling c…

fix(build): reference RMC.Numerics NuGet package instead of sibling c… #3

Workflow file for this run

name: Integration
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
jobs:
build-and-test:
name: Build and Test
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore WPF-Framework.sln
- name: Build
run: dotnet build WPF-Framework.sln --no-restore --configuration Release
- name: Test
run: >-
dotnet test WPF-Framework.sln
--no-build
--configuration Release
--logger "trx;LogFileName=TestResults.trx"
--results-directory TestResults
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4
with:
name: test-results
path: TestResults/**/*.trx
retention-days: 14