Observe director targets by their built ids and forward machine wiring through the timeout wrappers #138
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
| # This workflow will build a .NET project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
| # | |
| # Third-party and first-party actions are pinned to commit SHAs (tag in the trailing | |
| # comment) so a moved tag cannot silently change what runs. | |
| name: Build | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4.3.1 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Build & Test | |
| run: dotnet run --project NxGraph.Build -- ci | |
| - name: Upload coverage report | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: coverage-report | |
| # coverlet.msbuild (the single coverage driver) writes lcov coverage.info next to | |
| # each test csproj; the old '**/TestResults/*' pattern captured the removed VSTest | |
| # collector's output and would now upload nothing. | |
| path: '**/coverage.info' |