feat: Add support for instrumenting Hangfire background jobs. #214
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 the Build Tools solution | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'build/**' | |
| - '.github/workflows/scripts/**' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install latest .NET 10 SDK | |
| uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0 | |
| with: | |
| dotnet-version: '10.0.x' | |
| dotnet-quality: 'ga' | |
| - name: Build the solution | |
| run: dotnet build build/BuildTools.sln -c Release -m -p:Platform="Any CPU" --restore |