voxel-simulation/AGENTS.md
2025-06-17 22:12:29 +02:00

256 B
Raw Permalink Blame History

Run tests in release mode

cargo test --release
  • Compiles with optimizations (--release).
  • Executes all test binaries from target/release/deps.
  • Use for performancesensitive benchmarks.
  • Build takes longer; cache artifacts in CI.