mirror of
https://github.com/bytedance/g3.git
synced 2026-05-06 08:01:42 +00:00
10 lines
162 B
Makefile
10 lines
162 B
Makefile
check:
|
|
cargo check --workspace
|
|
|
|
test:
|
|
cargo test --workspace --lib --examples
|
|
|
|
clippy:
|
|
cargo clippy --tests -- --deny warnings
|
|
|
|
qa: check test clippy
|