Files
trussed-staging/Makefile
Sosthène Guédon c6c99f4504 Update documentation
2023-04-24 18:19:52 +02:00

21 lines
409 B
Makefile

# 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
RUSTDOCFLAGS='-Dwarnings' cargo doc --no-deps --all-features
reuse lint
.PHONY: test
test:
cargo test --all-features
.PHONY: ci
ci: check lint test