You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monolith/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 --