Files
trussed-auth/Makefile
T

21 lines
448 B
Makefile
Raw Normal View History

# Copyright (C) Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
.PHONY: check
check:
2024-04-02 21:50:05 +02:00
RUSTLFAGS='-Dwarnings' cargo check --all-features --all-targets --workspace
.PHONY: lint
lint:
2024-04-02 21:50:05 +02:00
cargo clippy --all-features --all-targets --workspace -- --deny warnings
cargo fmt --all -- --check
RUSTDOCFLAGS='-Dwarnings' cargo doc --no-deps --workspace
reuse lint
.PHONY: test
test:
2024-04-02 21:50:05 +02:00
cargo test --all-features --workspace
.PHONY: ci
ci: check lint test