Add native UI decision and testing workflow
CI / rust (push) Successful in 32s

This commit is contained in:
2026-08-31 15:05:20 -07:00
parent 29ffed1206
commit a703b5a5ee
13 changed files with 365 additions and 5 deletions
@@ -0,0 +1,10 @@
use lumbridge_core::{Platform, ProductStatus, UsageProvenance};
#[test]
fn downstream_crates_can_use_the_public_scaffold_contract() {
let status = ProductStatus::architecture_phase(Platform::ArchLinux);
assert_eq!(status.platform.to_string(), "Arch Linux / Omarchy");
assert!(status.message.contains("Architecture scaffold"));
assert_eq!(UsageProvenance::Estimated, UsageProvenance::Estimated);
}