mailpot/Makefile

19 lines
479 B
Makefile
Raw Normal View History

2022-08-24 12:22:44 +03:00
.PHONY: check
check:
cargo check --all-features --all --tests --examples --benches --bins
2022-08-24 12:22:44 +03:00
.PHONY: fmt
fmt:
cargo +nightly fmt --all || cargo fmt --all
cargo sort -w || printf "cargo-sort binary not found in PATH.\n"
djhtml -i web/src/templates/* || printf "djhtml binary not found in PATH.\n"
2022-08-24 12:22:44 +03:00
.PHONY: lint
lint:
cargo clippy --no-deps --all-features --all --tests --examples --benches --bins
.PHONY: test
test: check lint
cargo test --all --no-fail-fast --all-features