all: test

check:
	cargo clippy --all-targets --workspace -- -Dwarnings

build: check
	cargo build --all-targets

test: build
	cargo test

semver:
	cargo semver-checks
