mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
Co-authored-by: colinlyguo <colinlyguo@scroll.io> Co-authored-by: colin <102356659+colinlyguo@users.noreply.github.com> Co-authored-by: Péter Garamvölgyi <peter@scroll.io> Co-authored-by: georgehao <haohongfan@gmail.com> Co-authored-by: colinlyguo <colinlyguo@users.noreply.github.com> Co-authored-by: Mengran Lan <lanmengran@qq.com>
12 lines
191 B
Makefile
12 lines
191 B
Makefile
.PHONY: help fmt clippy test test-ci test-all
|
|
|
|
build:
|
|
@cargo build --release
|
|
|
|
fmt:
|
|
@cargo fmt --all -- --check
|
|
|
|
clippy:
|
|
@cargo check --all-features
|
|
@cargo clippy --release -- -D warnings
|