Files
wrkflw/crates/utils/README.md
bahdotsh aa9da33b30 docs(utils): update README to document cross-platform fd behavior
- Document Unix vs Windows fd redirection limitations
- Update example to reflect platform-specific behavior
- Clarify that stderr suppression is Unix-only
2025-08-27 15:36:51 +05:30

562 B

wrkflw-utils

Shared helpers used across crates.

  • Workflow file detection (.github/workflows/*.yml, .gitlab-ci.yml)
  • File-descriptor redirection utilities for silencing noisy subprocess output (Unix only; Windows support is limited)

Example

use std::path::Path;
use wrkflw_utils::{is_workflow_file, fd::with_stderr_to_null};

assert!(is_workflow_file(Path::new(".github/workflows/ci.yml")));

let value = with_stderr_to_null(|| {
    eprintln!("this is hidden on Unix, visible on Windows");
    42
}).unwrap();
assert_eq!(value, 42);