fix: audit sweep #41
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
| # Source: verified against docs.github.com/actions/tutorials/build-and-test-code/net | |
| # and github.com/actions/runner-images/issues/13789 (MSBuild pinning) | |
| name: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET 10 | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.1xx' | |
| - name: Restore dependencies | |
| run: dotnet restore src/GsdOrchestrator/GsdOrchestrator.csproj | |
| - name: Build | |
| run: dotnet build src/GsdOrchestrator/GsdOrchestrator.csproj --no-restore --configuration Release | |
| - name: Restore test dependencies | |
| run: dotnet restore src/GsdOrchestrator.Tests/GsdOrchestrator.Tests.csproj | |
| - name: Build tests | |
| run: dotnet build src/GsdOrchestrator.Tests/GsdOrchestrator.Tests.csproj --no-restore --configuration Release | |
| - name: Test | |
| run: dotnet test src/GsdOrchestrator.Tests/GsdOrchestrator.Tests.csproj --configuration Release --logger trx --no-build --collect:"XPlat Code Coverage" --results-directory ./TestResults | |
| - name: Upload coverage | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: coverage-results | |
| path: TestResults/ |