fix(build): reference RMC.Numerics NuGet package instead of sibling c… #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |