mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-03 21:45:51 -04:00
14 lines
205 B
Makefile
14 lines
205 B
Makefile
test:
|
|
cargo test --features 'encryption sqlite-cryptostore'
|
|
|
|
coverage:
|
|
cargo tarpaulin --features 'encryption sqlite-cryptostore' -v
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
format:
|
|
cargo fmt
|
|
|
|
.PHONY: clean test coverage
|