2
0
mirror of https://github.com/Y2Z/monolith synced 2024-11-12 13:10:59 +00:00
monolith/Makefile

17 lines
226 B
Makefile
Raw Normal View History

2019-09-22 16:57:50 +00:00
.PHONY: all build install run test lint
all: test build
build:
@cargo build --locked
2019-09-22 16:57:50 +00:00
install:
@cargo install --force --locked --path .
2019-09-22 16:57:50 +00:00
test:
@cargo test --locked
2019-09-22 16:57:50 +00:00
@cargo fmt --all -- --check
lint:
@cargo fmt --all --