Skip to content

Commit

Permalink
Added publishing tests results during CI (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrKarczmarz authored Oct 2, 2024
1 parent 77a9987 commit 23bad6c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/cake-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,13 @@ jobs:
run: |
cd src
dotnet cake --target Tests
dotnet test .\Cody.VisualStudio.Tests\bin\Debug\Cody.VisualStudio.Tests.dll -v detailed
dotnet test .\Cody.VisualStudio.Tests\bin\Debug\Cody.VisualStudio.Tests.dll -v detailed -l:trx
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
if: always()
with:
files: |
src\TestResults/**/*.xml
src\TestResults/**/*.trx
src\TestResults/**/*.json

0 comments on commit 23bad6c

Please sign in to comment.