Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
publish test results
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed May 31, 2022
1 parent 4f6cc47 commit 9478900
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,22 @@ jobs:
run: dotnet build build.slnf -c Release

- name: Run Tests
run: dotnet test build.slnf -c Release --no-build --logger "trx;LogFileName=test-results.trx"
run: |
dotnet test .\tests\Prism.Maui.Tests\ -c Release --no-build --logger "trx;LogFileName=prism.maui-results.trx"
dotnet test .\tests\Prism.DryIoc.Maui.Tests\ -c Release --no-build --logger "trx;LogFileName=prism.dryioc.maui-results.trx"
mkdir TestResults
mv .\tests\Prism.Maui.Tests\TestResults\prism.maui-results.trx .\TestResults
mv .\tests\Prism.DryIoc.Maui.Tests\TestResults\prism.dryioc.maui-results.trx .\TestResults
- name: Upload Artifacts
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: Test Results
path: Artifacts/

- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: NuGet
path: Artifacts/
Expand Down

0 comments on commit 9478900

Please # to comment.