ci: add build workflow - #2
Merged
Merged
Conversation
Adds .github/workflows/ci.yml running dotnet build -c Release against the solutions that currently build green (devhub-sync/DevHubSync.sln). repo-tools/GitHubRepoTools.sln is excluded (pre-existing CS0507 error, legacy code, out of scope) and documented in a comment at the top of the workflow.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/ci.ymlrunningdotnet build -c Releaseonubuntu-latestwith .NET10.0.x(actions/setup-dotnet@v4), matrixed over the solution paths that currently build green.mainand on pull requests targetingmain.Build-health table
Every
*.slnin the repo was built locally withdotnet build -c Release(.NET 10.0.301 SDK):devhub-sync/DevHubSync.slnrepo-tools/GitHubRepoTools.slnGitHubRepoTools.Cli/Commands/EnableRenovateCommand.cs(58,37): error CS0507:EnableRenovateCommand.ExecuteAsynccannot change access modifiers when overriding theprotectedinherited memberAsyncCommand<Settings>.ExecuteAsync. Pre-existing legacy code issue, excluded from CI matrix.1/2 solutions build.
skills/andautomate/do not contain any.sln/.NET projects (Node/Tauri-based), so they aren't part of this build matrix.Test plan
dotnet build -c Releaserun locally against every discovered.sln(2 found), results captured above.dotnet-version: 10.0.x, matrix build step).build (devhub-sync/DevHubSync.sln)job goes green.