Cheat sheet
Don't have time to read the docs? Here's a quick cheat sheet to get you started.
Tasks
Learn more about tasks and targets.
Run all build and test tasks for all projects
moon check --all
Run all build and test tasks in a project
moon check project
Run all build and test tasks for closest project based on working directory
moon check
Run a task in all projects
moon run :task
Run a task in all projects with a tag
moon run '#tag:task'
# OR
moon run \#tag:task
# OR
moon run :task --query "tag=tag"
Run a task in a project
moon run project:task
Run multiple tasks in all projects
moon run :task1 :task2