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
-6
View File
@@ -38,12 +38,6 @@ jobs:
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Install cargo-deny
run: cargo install cargo-deny
- name: Check dependencies with cargo-deny
run: cargo deny check
- name: Run unit tests
run: cargo test --quiet