From edf94736933aeb0cc02504705e908ad44957fc3e Mon Sep 17 00:00:00 2001 From: "black.terminal" <64269417+subkoks@users.noreply.github.com> Date: Sun, 5 Jul 2026 17:54:30 +0100 Subject: [PATCH] fix(makefile): dedupe ci target and include security-scan Merge duplicate ci recipes into one target so make no longer warns about overridden commands and local CI runs security-scan consistently. --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 863b16c..347cbd0 100644 --- a/Makefile +++ b/Makefile @@ -61,8 +61,8 @@ test: @command -v bats >/dev/null 2>&1 || { echo "[ERR ] bats not found. Install bats-core (brew install bats-core / apt-get install bats)."; exit 1; } bats tests/ -ci: lint check skills-drift test - @echo "[ OK ] Local CI mirror passed (lint + check + skills-drift + test)" +ci: lint check skills-drift test security-scan + @echo "[ OK ] Local CI mirror passed (lint + check + skills-drift + test + security-scan)" security-scan: ./scripts/security-scan.sh --fail-on high @@ -71,6 +71,3 @@ hooks: dag: ./scripts/dag-schedule.sh --manifest orchestration/tasks.example.tsv - -ci: lint check skills-drift test security-scan - @echo "[ OK ] Local CI mirror passed (lint + check + skills-drift + test + security-scan)"