mirror of
https://github.com/cubixle/radius-rs.git
synced 2026-04-24 21:14:44 +01:00
20 lines
188 B
Makefile
20 lines
188 B
Makefile
check: test lint
|
|
|
|
test:
|
|
cargo test
|
|
|
|
build:
|
|
cargo build
|
|
|
|
lint:
|
|
cargo clippy
|
|
|
|
gen:
|
|
bash ./scripts/generate-code.sh
|
|
$(MAKE) fix
|
|
|
|
fix:
|
|
cargo fix --allow-dirty --allow-staged
|
|
cargo fmt
|
|
|