mirror of
https://github.com/langchain-ai/markdown-exec.git
synced 2026-07-22 09:35:27 -04:00
29 lines
496 B
Makefile
29 lines
496 B
Makefile
# If you have `direnv` loaded in your shell, and allow it in the repository,
|
|
# the `make` command will point at the `scripts/make` shell script.
|
|
# This Makefile is just here to allow auto-completion in the terminal.
|
|
|
|
actions = \
|
|
allrun \
|
|
changelog \
|
|
check \
|
|
check-api \
|
|
check-docs \
|
|
check-quality \
|
|
check-types \
|
|
clean \
|
|
coverage \
|
|
docs \
|
|
docs-deploy \
|
|
format \
|
|
help \
|
|
multirun \
|
|
release \
|
|
run \
|
|
setup \
|
|
test \
|
|
vscode
|
|
|
|
.PHONY: $(actions)
|
|
$(actions):
|
|
@python scripts/make "$@"
|