Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/compiler_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ fn test_compiled_yaml_structure() {
template_content.contains("sha256sum -c checksums.txt --ignore-missing"),
"Template should verify checksum using checksums.txt"
);
assert!(
!template_content.contains("grep -q"),
"Checksum verification should not pipe through grep"
);

// Verify AWF (Agentic Workflow Firewall) is downloaded from GitHub Releases, not ADO pipeline artifacts
assert!(
Expand Down
Loading