默认配方

just 被调用而没有传入任何配方时,它会运行 justfile 中的第一个配方。这个配方可能是项目中最常运行的命令,比如运行测试:

test:
  cargo test

你也可以使用依赖关系来默认运行多个配方:

default: lint build test

build:
  echo Building…

test:
  echo Testing…

lint:
  echo Linting…

在没有合适配方作为默认配方的情况下,你也可以在 justfile 的开头添加一个配方,用于列出可用的配方:

default:
  just --list