Replace the Azure pipeline with a GitHub Actions build - #87
Merged
Conversation
Builds and tests the template solution in Release on windows-latest, builds the renamer tool, and drops azure-pipelines.yml. The Azure DevOps project behind the old pipeline is gone. Claude-Session: https://claude.ai/code/session_01Nyppsn3VF6d1Sno5orPWiV
There was a problem hiding this comment.
🟢 Approval recommended
No unresolved review comments were supplied.
Pull request overview
Migrates CI from Azure Pipelines to GitHub Actions while preserving .NET build and test coverage.
Changes:
- Adds a GitHub Actions CI workflow.
- Updates the README build badge.
- Removes the obsolete Azure Pipelines configuration.
File summaries
| File | Description |
|---|---|
README.md |
Points the build badge to GitHub Actions. |
azure-pipelines.yml |
Removes the obsolete Azure pipeline. |
.github/workflows/build.yml |
Defines the new GitHub Actions build workflow. |
Review details
Suppressed comments (1)
.github/workflows/build.yml:36
- The previous Azure
VSBuildstep passedDeployOnBuild=true,WebPublishMethod=Package,PackageAsSingleFile=true, and a package location, so it also validated and produced the web deployment package. This workflow only performs a regular build and uploads TRX files, silently dropping that CI output; add an equivalent publish/package step and upload its artifact (or explicitly remove that requirement from the migration).
run: dotnet build src/AspNetCoreTemplate.sln -c Release --no-restore
- Files reviewed: 3/3 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
The two WebTests examples boot the app through WebApplicationFactory and need a database, which the hosted runner does not have. Claude-Session: https://claude.ai/code/session_01Nyppsn3VF6d1Sno5orPWiV
NikolayIT
force-pushed
the
ci/github-actions
branch
from
August 24, 2026 13:57
e871017 to
4af8fca
Compare
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.
Migrates CI from Azure Pipelines to GitHub Actions and removes azure-pipelines.yml. The Azure DevOps project behind the old pipeline is already deleted.