chore: git cache cleanup

This commit is contained in:
GitHub Actions
2026-03-04 18:34:49 +00:00
parent c32cce2a88
commit 27c252600a
2001 changed files with 683185 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#!/usr/bin/env bash
set -euo pipefail
# Aggregates integration tests using skill entrypoints.
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
SKILL_RUNNER="${PROJECT_ROOT}/.github/skills/scripts/skill-runner.sh"
if [[ ! -x "${SKILL_RUNNER}" ]]; then
echo "ERROR: skill runner not found or not executable: ${SKILL_RUNNER}" >&2
exit 1
fi
run_skill() {
local skill_name="$1"
shift
echo "=============================================="
echo "=== Running skill: ${skill_name} ==="
echo "=============================================="
"${SKILL_RUNNER}" "${skill_name}" "$@"
}
run_skill "integration-test-cerberus" "$@"
run_skill "integration-test-coraza" "$@"
run_skill "integration-test-rate-limit" "$@"
run_skill "integration-test-crowdsec" "$@"
run_skill "integration-test-crowdsec-decisions" "$@"
run_skill "integration-test-crowdsec-startup" "$@"
echo "=============================================="
echo "=== ALL INTEGRATION TESTS COMPLETED ==="
echo "=============================================="