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
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
if command -v bacon >/dev/null 2>&1; then
exec bacon "$@"
fi
# Compatibility for developers who still have the now-dormant cargo-watch.
if command -v cargo-watch >/dev/null 2>&1; then
exec cargo watch -x "check --workspace --all-targets --all-features" \
-x "test --workspace --all-features"
fi
echo "Install Bacon with: cargo install --locked bacon" >&2
exit 127