/ 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  	release \
21  	run \
22  	setup \
23  	test \
24  	vscode
25  
26  .PHONY: $(actions)
27  $(actions):
28  	@python scripts/make "$@"