Skip to content

Commit

Permalink
ci: create test report
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexZeitler committed Apr 14, 2024
1 parent 28589f5 commit e388e45
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,12 @@ jobs:
docker compose up -d
cd ..
cd src
dotnet test -l "console;verbosity=detailed"
dotnet test -l "trx;LogFileName=test-results.trx" ./src/MartenDotNetTestTemplate.Tests
- name: Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: .NET Tests
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true

0 comments on commit e388e45

Please sign in to comment.