🔧 Add check rule to Makefile (#12135)

To run all linting/type-checking, just for dev ease

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
This commit is contained in:
Chris Sewell 2024-03-19 09:34:34 +01:00 committed by GitHub
parent 95d710e78f
commit a27f156e31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,6 +3,9 @@ PYTHON ?= python3
.PHONY: all .PHONY: all
all: style-check type-check test all: style-check type-check test
.PHONY: check
check: style-check type-check doclinter
.PHONY: clean .PHONY: clean
clean: clean clean: clean
# clean Python cache files: # clean Python cache files: