We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9aeeac commit ce3fb5eCopy full SHA for ce3fb5e
.github/workflows/build.yml
@@ -13,7 +13,7 @@ on:
13
14
jobs:
15
16
- build:
+ Build:
17
runs-on: ubuntu-latest
18
19
steps:
@@ -57,9 +57,19 @@ jobs:
57
- name: Run tests
58
run: dotnet test --no-restore --verbosity normal --logger "TRX"
59
60
- # Publish artefacts
61
- - name: Publish test results
+ # Publish artefacts and test results
+
62
+ - name: Publish test log
63
uses: actions/upload-artifact@v3
64
+ if: always()
65
with:
66
name: test-results
67
path: ${{ github.workspace }}/LogicAppUnit.Samples.LogicApps.Tests/TestResults/**.trx
68
69
+ - name: Publish test results
70
+ uses: dorny/test-reporter@v1
71
72
+ with:
73
+ name: Tests
74
+ path: ${{ github.workspace }}/LogicAppUnit.Samples.LogicApps.Tests/TestResults/**.trx
75
+ reporter: dotnet-trx
0 commit comments