refactor(ci): streamline GitHub workflows
Metrics Collection / collect-metrics (push) Has been cancelled
Code Quality / quality-checks (push) Has been cancelled
Security Scan / security-audit (push) Has been cancelled

- remove build.yml (redundant with release.yml)
- security.yml: remove duplicate cargo deny check (advisories redundant with full check)
- metrics.yml: remove unused rustfmt/clippy components and no-op summary step
- quality.yml: remove duplicate cargo deny check (already runs in security workflow)
This commit is contained in:
2026-03-17 19:52:38 +01:00
parent 446426ea47
commit 50c5de5371
4 changed files with 3 additions and 260 deletions
+1 -5
View File
@@ -33,10 +33,7 @@ jobs:
- name: Run cargo audit
run: cargo audit
- name: Run cargo deny (advisories only)
run: cargo deny check advisories
- name: Run cargo deny (full check)
- name: Run cargo deny
run: cargo deny check
- name: Generate Software Bill of Materials (SBOM)
@@ -65,4 +62,3 @@ jobs:
echo "✅ Outdated dependencies checked"
echo ""
echo "Next scheduled scan: Weekly (Sunday 00:00 UTC)"
echo "Manual trigger: Click 'Run workflow' in GitHub Actions"