Conversation
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 adds a root repository
Taskfile.ymlfor common local workflows, so contributors can build, test, verify dependencies, and run focused test commands through a single discoverable entrypoint.Highlights
Repository task entrypoint
Taskfile.ymlwith direct, thin wrappers around the repository's existingdotnet, Python, and DocFX commands.restore,clean,build,test,format,deps,docs, andverify.test:projectworkflow for focused test runs.Repo-facing documentation
README.md.Docs/Home.mdso the task layer is visible from the documentation surface as well.Build workflow hardening
obj/**/*.csandbin/**/*.cssources fromsrc/ModularityKit.Mutator.csproj.Why
Issue #49 is about reducing command drift in a repository that already has several build, test, docs, and validation workflows. Contributors should not need to memorize long solution paths and repeated
dotnetinvocations for common tasks.This PR adds the root task entrypoint while keeping the implementation low ceremony and aligned with the commands the repository already uses in README guidance and CI.
Checks
task --list-alltask --dry build CONFIGURATION=Debugtask --dry test:project PROJECT=Tests/ModularityKit.Mutator.Tests/ModularityKit.Mutator.Tests.csproj FILTER=MutationBase CONFIGURATION=Debugtask buildtask test:project PROJECT=Tests/ModularityKit.Mutator.Tests/ModularityKit.Mutator.Tests.csproj FILTER=MutationBasetask depstask testCloses