.NET: Add github actions workflow for verify-samples#5034
Merged
westey-m merged 5 commits intomicrosoft:mainfrom Apr 3, 2026
Merged
.NET: Add github actions workflow for verify-samples#5034westey-m merged 5 commits intomicrosoft:mainfrom
westey-m merged 5 commits intomicrosoft:mainfrom
Conversation
rogerbarreto
approved these changes
Apr 2, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds CI automation for the .NET verify-samples tool and enhances the tool to emit a Markdown summary suitable for GitHub Job Summaries.
Changes:
- Added
--mdoption to generate a Markdown results summary file fromverify-samples. - Implemented
MarkdownResultWriterand wired it into the tool’s execution flow. - Introduced a scheduled + manual GitHub Actions workflow to run
verify-samplesand publish the Markdown summary and CSV artifact.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| dotnet/eng/verify-samples/VerifyOptions.cs | Adds a new CLI option to specify an output Markdown summary path. |
| dotnet/eng/verify-samples/Program.cs | Writes the Markdown summary when --md is provided. |
| dotnet/eng/verify-samples/MarkdownResultWriter.cs | New writer that formats verification results as Markdown (table + failure details). |
| dotnet/.github/skills/verify-samples-tool/SKILL.md | Documents the new --md option in the verify-samples tool skill doc. |
| .github/workflows/dotnet-verify-samples.yml | New workflow to run verify-samples on a schedule or manually and publish a job summary + artifact. |
peibekwe
approved these changes
Apr 2, 2026
lokitoth
approved these changes
Apr 2, 2026
SergeyMenshykh
approved these changes
Apr 3, 2026
alliscode
pushed a commit
to alliscode/agent-framework
that referenced
this pull request
Apr 3, 2026
* Add github actions workflow for verify-samples * Make workflow run as part of PR (for now) * Update workflow to remove pr trigger * Address PR comments
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.
Motivation and Context
Description
Contribution Checklist