diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 70f3b1e..7ca847c 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -10,14 +10,18 @@ jobs: name: "Run the unit tests" runs-on: ubuntu-latest steps: + - name: "run xUnit" - run: | - ls - cd src - cd test - cd CleanArc.Test.Infrastructure.Identity - dotnet test - fail-on-error : true + run: dotnet test --logger "trx;LogFileName=test-results.trx" || true + + - name: Test Report + uses: dorny/test-reporter@v1 + if: always() + with: + name: Unit Tests + path: "**/test-results.trx" + reporter: dotnet-trx + fail-on-error: true publish: diff --git a/CleanArcTemplate.nuspec b/CleanArcTemplate.nuspec index 38f8418..305d302 100644 --- a/CleanArcTemplate.nuspec +++ b/CleanArcTemplate.nuspec @@ -3,7 +3,7 @@ Bobby.CleanArcTemplate - 4.0.2 + 4.0.3 Clean Architecture Solution Template BabakTaremi Clean Architecture Solution Template for and .NET 7. With many features available out of the box