You've already forked interchange
mirror of
https://github.com/trussed-dev/interchange.git
synced 2026-03-11 16:31:34 -07:00
10 lines
192 B
Makefile
10 lines
192 B
Makefile
.PHONY= test, clippy
|
|
|
|
test:
|
|
cargo t
|
|
RUSTFLAGS='--cfg loom' cargo t loom
|
|
|
|
clippy:
|
|
cargo clippy --all-targets --all-features
|
|
RUSTFLAGS='--cfg loom' cargo clippy --all-targets --all-features
|