aboutsummaryrefslogblamecommitdiffhomepage
path: root/ci/Makefile
blob: 69d6c97c6783a2f62ef4a1e02611f6c4a9318ac8 (plain) (tree)


















                                                                           
all: build build-examples check-fmt check-clippy check-tests check-examples

build:
	cargo build

build-examples:
	cargo build --examples

check-fmt:
	cargo fmt --check

check-clippy:
	cargo clippy -- -Dwarnings -Aclippy::new_without_default

check-tests:
	cargo test

check-examples:
	cargo test --examples