12 lines
94 B
Makefile
12 lines
94 B
Makefile
|
|
.PHONY: dev
|
|
|
|
dev:
|
|
cargo watch -x run
|
|
|
|
test:
|
|
cargo watch -x test
|
|
|
|
test-oneshot:
|
|
cargo test
|