From a6b0c10bf92454f73c3e65f822c1e6345c4890bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Tr=C3=B6ger?= Date: Thu, 26 Dec 2024 18:52:56 +1000 Subject: [PATCH] fix: declare `check-actionlint` goal in Makefile as proper phony (#849) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d44b1358..9f97ecca 100644 --- a/Makefile +++ b/Makefile @@ -150,7 +150,7 @@ audit: python -m pip_audit --skip-editable --desc on --fix --dry-run # Run some or all checks over the package code base. -.PHONY: check check-code check-bandit check-flake8 check-lint check-mypy +.PHONY: check check-code check-bandit check-flake8 check-lint check-mypy check-actionlint check-code: check-bandit check-flake8 check-lint check-mypy check-actionlint check-bandit: pre-commit run bandit --all-files