From 571dba47155ca774d73a1a7b3b8e76dafd94c9d9 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sat, 3 Jan 2026 22:41:54 -0600 Subject: [PATCH] feat(Taskfile): add new 'check' task to run format, lint, and test commands --- Taskfile.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Taskfile.yml b/Taskfile.yml index d7369e2..6912a36 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -125,6 +125,13 @@ tasks: desc: Run all tests with coverage reports deps: [test-python-cov, test-frontend] + check: + desc: Run format, lint and test + cmds: + - task: format + - task: lint + - task: test + bench-backend: desc: Run comprehensive backend benchmarks cmds: