From cef1fce305eb35560ffc0afef69f9a8d1e4ae99c Mon Sep 17 00:00:00 2001 From: Elijas <4084885+Elijas@users.noreply.github.com> Date: Sun, 15 Oct 2023 02:18:45 +0300 Subject: [PATCH] build(taskfile): rename task lint to lint-only-check and use it in ci-cd --- Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index c734ff3..66a204f 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -47,7 +47,7 @@ tasks: desc: Run all CI/CD checks. Execute this to debug a failing CI/CD pipeline. cmds: - task: unit - - task: lint + - task: lint-only-check - task: docs-verify ###################################################################################### @@ -65,7 +65,7 @@ tasks: - poetry run ruff check --fix sec_ai/ - poetry run mypy - lint-check: # Lint the code without auto-fixing issues. + lint-only-check: # Lint the code without auto-fixing issues. cmds: - poetry run ruff check sec_ai/ - poetry run mypy