From 4d71474c1edc7082f7297b5caeff0b625fbd48f7 Mon Sep 17 00:00:00 2001 From: Jens Troeger Date: Tue, 10 Dec 2024 00:00:12 +1000 Subject: [PATCH] fix: declare `check-actionlint` goal in Makefile as proper phony --- 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