#21798 Is it possible to alias multiple goals?
New discussion created by
kdowney-talos
Let's say I want to create a goal called "pre-commit" that always runs
• fmt
• lint
• check
• test
on the whole monorepo. Is the only way to do this to create a plugin, or is there a way to do it in a top-level
BUILD
file? I read through the docs, and while I can see there's a generic
target
there does not appear to be a generic goal.
In a
Makefile
this would be a
.PHONY
rule.
pantsbuild/pants