ci: split PR checks into explicit job groups#61
Merged
Conversation
912fa2f to
a98fa84
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.
Summary
This PR keeps the PR checks readable by splitting examples out of the main CI workflow and leaving build/test verification in
pr-check.yml.Highlights
CI workflow
pr-check.ymlfocused on build and test validation.examples-check.ymlworkflow.Governance tests
Why
The previous workflow was correct but still too tall in the GitHub Actions UI. Splitting example validation into a second workflow keeps the checks easier to scan while preserving explicit coverage for each repository surface.
Checks
dotnet build ModularityKit.Mutator.slnx -c Releasedotnet test Tests/ModularityKit.Mutator.Governance.Tests/ModularityKit.Mutator.Governance.Tests.csproj -c Releasedotnet test Tests/ModularityKit.Mutator.Tests/ModularityKit.Mutator.Tests.csproj -c Release --no-build --no-restoredotnet test Tests/ModularityKit.Mutator.Governance.Redis.Tests/ModularityKit.Mutator.Governance.Redis.Tests.csproj -c Release --no-build --no-restoredotnet run --project Examples/Core/BillingQuotas/BillingQuotas.csproj -c Release --no-build --no-restoredotnet run --project Examples/Governance/RequestLifecycle/RequestLifecycle.csproj -c Release --no-build --no-restoreCloses