feat: Improve outgoing request tracing and transaction details UI #73
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore | |
| run: dotnet restore DebugProbe.AspNetCore.sln | |
| - name: Build | |
| run: dotnet build DebugProbe.AspNetCore.sln --no-restore --configuration Release | |
| - name: Test | |
| run: dotnet test DebugProbe.AspNetCore.sln --no-build --configuration Release |