/ Makefile
Makefile
 1  # If you have `direnv` loaded in your shell, and allow it in the repository,
 2  # the `make` command will point at the `scripts/make` shell script.
 3  # This Makefile is just here to allow auto-completion in the terminal.
 4  
 5  actions = \
 6  	allrun \
 7  	changelog \
 8  	check \
 9  	check-api \
10  	check-docs \
11  	check-quality \
12  	check-types \
13  	clean \
14  	coverage \
15  	docs \
16  	docs-deploy \
17  	format \
18  	help \
19  	multirun \
20  	profile \
21  	release \
22  	run \
23  	setup \
24  	test \
25  	vscode
26  
27  .PHONY: $(actions)
28  $(actions):
29  	@python scripts/make "$@"