forked from gevico/machina
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (29 loc) · 737 Bytes
/
Copy pathMakefile
File metadata and controls
43 lines (29 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
SHELL := /bin/bash
.PHONY: all build release test test-backend test-frontend test-integration \
clippy fmt fmt-check docs check-agent-skills clean
all: build
build:
cargo build --workspace
release:
cargo build --workspace --release
test:
cargo test --workspace
test-backend:
cargo test -p machina-tests backend
test-frontend:
cargo test -p machina-tests frontend
test-integration:
cargo test -p machina-tests integration
cargo test -p machina-tests exec
clippy:
cargo clippy --workspace -- -D warnings -A clippy::pedantic -A clippy::nursery
fmt:
cargo fmt --all
fmt-check:
cargo fmt --all --check
docs:
cargo doc --workspace
check-agent-skills:
python3 scripts/check-agent-skills.py
clean:
cargo clean