From ef3523082a461912b62a3bc7bbf812212c254019 Mon Sep 17 00:00:00 2001 From: bronsen <kontakt+gitcommit@nrrd.de> Date: Sat, 15 Mar 2025 00:00:32 +0100 Subject: [PATCH] [just] add new lint recipe for woodpecker workflows --- justfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 5a54d88..228b22f 100644 --- a/justfile +++ b/justfile @@ -4,7 +4,7 @@ deps: sync: pip-sync requirements/dev.txt -lint: lint-ruff lint-django +lint: lint-ruff lint-django lint-woodpecker lint-ruff: ruff check . @@ -12,6 +12,9 @@ lint-ruff: lint-django: python -m django check +lint-woodpecker: + woodpecker-cli lint .woodpecker/workflow.yaml + serve: python -m django runserver