mirror of
https://github.com/Y2Z/monolith
synced 2024-11-05 06:01:10 +00:00
17 lines
226 B
Makefile
17 lines
226 B
Makefile
.PHONY: all build install run test lint
|
|
|
|
all: test build
|
|
|
|
build:
|
|
@cargo build --locked
|
|
|
|
install:
|
|
@cargo install --force --locked --path .
|
|
|
|
test:
|
|
@cargo test --locked
|
|
@cargo fmt --all -- --check
|
|
|
|
lint:
|
|
@cargo fmt --all --
|