Add AGENTS.md

This commit is contained in:
Elias Stepanik 2025-06-17 22:12:29 +02:00
parent 970545dc16
commit 9e2d294d69

10
AGENTS.md Normal file
View File

@ -0,0 +1,10 @@
# Run tests in release mode
```bash
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.