Skip to content
Snippets Groups Projects

feat: introduce Makefile

Merged Valentin Syrovatskiy requested to merge makefile into master
All threads resolved!
Makefile 0 → 100644
+ 13
0
.PHONY: default lint test
default: ;
lint:
cargo fmt --check
cargo check
cargo clippy -- --deny clippy::all
pipenv run lint
test:
cargo test
pipenv run pytest
Loading