File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 - name : Build Code
2525 run : dotnet build CallbackHandler.sln --configuration Release
2626
27- - name : Run Unit Tests
28- run : |
29- echo "ASPNETCORE_ENVIRONMENT is > ${ASPNETCORE_ENVIRONMENT}"
30- dotnet test "CallbackHandler.BusinessLogic.Tests/CallbackHandler.BusinessLogic.Tests.csproj"
31- dotnet test "CallbackHandler.CallbackMessageAggregate.Tests/CallbackHandler.CallbackMessageAggregate.Tests.csproj"
32- dotnet test "CallbackHandler.Tests/CallbackHandler.Tests.csproj"
33-
3427 - name : Publish Docker Image - Pre Release
3528 if : ${{ github.event.release.prerelease == true }}
3629 run : |
Original file line number Diff line number Diff line change 3737
3838 - name : Run Integration Tests
3939 run : dotnet test "CallbackHandler.IntegrationTests\CallbackHandler.IntegrationTests.csproj"
40+
41+ - uses : actions/upload-artifact@v4.4.0
42+ with :
43+ name : tracelogs
44+ path : /home/runner/trace/
4045
4146 - uses : dacbd/create-issue-action@main
4247 if : ${{ failure() }}
Original file line number Diff line number Diff line change 3535 - name : Run Integration Tests
3636 run : dotnet test "CallbackHandler.IntegrationTests\CallbackHandler.IntegrationTests.csproj" --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=integration-test-results.trx"
3737
38+ - uses : actions/upload-artifact@v4.4.0
39+ with :
40+ name : tracelogs
41+ path : /home/runner/trace/
42+
3843 - name : Publish test results
3944 uses : dorny/test-reporter@v1
4045 if : always()
You can’t perform that action at this time.
0 commit comments