matrix-rust-sdk/Makefile

14 lines
116 B
Makefile
Raw Normal View History

2019-11-24 21:43:36 +00:00
test:
cargo test
coverage:
cargo tarpaulin
clean:
cargo clean
format:
cargo fmt
.PHONY: clean test coverage