chore: improved Justfile

This commit is contained in:
ITQ
2025-11-21 09:44:44 +03:00
parent f23c4cbe6d
commit 262ac5cc38
+13 -2
View File
@@ -16,7 +16,7 @@ build:
[group("Docker")] [group("Docker")]
[doc("Compose start")] [doc("Compose start")]
up: up:
docker compose --profile migrations --profile observability up -d --remove-orphans --quiet-pull docker compose --profile migrations --profile observability up -d --remove-orphans --quiet-pull --force-recreate
# ========= # =========
# > Tests # > Tests
@@ -44,10 +44,21 @@ lint:
bandit src tests bandit src tests
[no-cd] [no-cd]
[group("Formatters run")] [group("Formatters")]
format: format:
ruff format ruff format
# =========
# > Overall check
# =========
[no-cd]
[group("Check")]
[doc("Check before commit")]
check:
just lint
just tests
# ========= # =========
# > Migrations # > Migrations
# ========= # =========