-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
27 lines (21 loc) · 873 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
###############################################################################
# Lint
###############################################################################
.PHONY: lint
lint:
cargo fmt --check
# cargo udeps --all-targets
cargo clippy --workspace --all-targets --all-features -- -D warnings
###############################################################################
# Lint (with fixes)
###############################################################################
.PHONY: lint-fix
lint-fix:
cargo clippy --workspace --all-targets --all-features --fix --allow-dirty --allow-staged --broken-code
cargo fmt --all
###############################################################################
# Test
###############################################################################
.PHONY: test
test:
cargo test --verbose --workspace --all-features