From b40e4585fcb16b5ae9d71a2143af43194c2d9b48 Mon Sep 17 00:00:00 2001 From: aviau Date: Wed, 19 Nov 2025 18:38:53 -0500 Subject: [PATCH] Makefile: add ci target --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b442a4a..7fff869 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,10 @@ lintlify: venv venv/bin/python -m lintlify.main .PHONY: lint -lint: broken-links venv mypy lintlify format-check +lint: broken-links mypy lintlify format-check + +.PHONY: ci +ci: broken-links mypy lintlify format-check test .PHONY: format format: venv @@ -45,7 +48,7 @@ format-check: venv venv/bin/ruff format --check .PHONY: mypy -mypy: +mypy: venv venv/bin/mypy --strict scripts/*.py venv/bin/mypy --strict --ignore-missing-imports -p lintlify