2023-04-24 11:23:00 +02:00
|
|
|
# Copyright (C) Nitrokey GmbH
|
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
.PHONY: check
|
|
|
|
|
check:
|
2024-03-07 21:41:36 +01:00
|
|
|
RUSTLFAGS='-Dwarnings' cargo check --all-features --all-targets --workspace
|
|
|
|
|
RUSTLFAGS='-Dwarnings' cargo check --no-default-features
|
|
|
|
|
RUSTLFAGS='-Dwarnings' cargo check --features encrypted-chunked
|
|
|
|
|
RUSTLFAGS='-Dwarnings' cargo check --features manage
|
|
|
|
|
RUSTLFAGS='-Dwarnings' cargo check --features wrap-key-to-file
|
2023-04-24 11:23:00 +02:00
|
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
|
lint:
|
2024-03-07 21:41:36 +01:00
|
|
|
cargo clippy --all-features --all-targets --workspace -- --deny warnings
|
|
|
|
|
cargo fmt --all -- --check
|
|
|
|
|
RUSTDOCFLAGS='-Dwarnings' cargo doc --no-deps --all-features --workspace
|
2023-04-24 11:23:00 +02:00
|
|
|
reuse lint
|
|
|
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
|
test:
|
2024-03-07 21:41:36 +01:00
|
|
|
cargo test --all-features --workspace
|
2023-04-24 11:23:00 +02:00
|
|
|
|
|
|
|
|
.PHONY: ci
|
|
|
|
|
ci: check lint test
|