Some checks failed
ci / Check build (macos-latest) (push) Has been cancelled
ci / Check build (ubuntu-latest) (push) Has been cancelled
ci / Check build (windows-latest) (push) Has been cancelled
ci / Check MSRV (push) Has been cancelled
ci / Check Cross-Compilation (armv7-unknown-linux-gnueabihf) (push) Has been cancelled
ci / Check Cross-Compilation (armv7a-none-eabi) (push) Has been cancelled
ci / Check formatting (push) Has been cancelled
ci / Check Documentation Build (push) Has been cancelled
ci / Clippy (push) Has been cancelled
ci / Check build (macos-latest) (pull_request) Has been cancelled
ci / Check build (ubuntu-latest) (pull_request) Has been cancelled
ci / Check build (windows-latest) (pull_request) Has been cancelled
ci / Check MSRV (pull_request) Has been cancelled
ci / Check Cross-Compilation (armv7-unknown-linux-gnueabihf) (pull_request) Has been cancelled
ci / Check Cross-Compilation (armv7a-none-eabi) (pull_request) Has been cancelled
ci / Check formatting (pull_request) Has been cancelled
ci / Check Documentation Build (pull_request) Has been cancelled
ci / Clippy (pull_request) Has been cancelled
36 lines
626 B
Makefile
36 lines
626 B
Makefile
all: check build embedded clippy check-fmt docs
|
|
|
|
clippy:
|
|
cargo clippy -- -D warnings
|
|
|
|
fmt:
|
|
cargo fmt --all
|
|
|
|
check-fmt:
|
|
cargo fmt --all -- --check
|
|
|
|
check:
|
|
cargo check
|
|
|
|
embedded:
|
|
cargo build --target armv7a-none-eabi
|
|
|
|
test:
|
|
cargo nextest r
|
|
cargo test --doc
|
|
|
|
build:
|
|
cargo build
|
|
|
|
docs:
|
|
RUSTDOCFLAGS="--cfg docsrs -Z unstable-options --generate-link-to-definition" cargo +nightly doc --no-deps
|
|
|
|
docs-html:
|
|
RUSTDOCFLAGS="--cfg docsrs -Z unstable-options --generate-link-to-definition" cargo +nightly doc --open --no-deps
|
|
|
|
coverage:
|
|
cargo llvm-cov nextest
|
|
|
|
coverage-html:
|
|
cargo llvm-cov nextest --html --open
|