Files

21 lines
409 B
Makefile
Raw Permalink Normal View History

2023-04-24 11:23:00 +02:00
# Copyright (C) Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
.PHONY: check
check:
RUSTLFAGS='-Dwarnings' cargo check --all-features --all-targets
.PHONY: lint
lint:
cargo clippy --all-features --all-targets -- --deny warnings
cargo fmt -- --check
2023-04-24 18:19:52 +02:00
RUSTDOCFLAGS='-Dwarnings' cargo doc --no-deps --all-features
2023-04-24 11:23:00 +02:00
reuse lint
.PHONY: test
test:
cargo test --all-features
.PHONY: ci
ci: check lint test