Files
zeavis-edu/apps/ml-service/moon.yml
T

19 lines
304 B
YAML
Raw Normal View History

2026-05-22 19:23:43 +00:00
tasks:
dev:
command: cargo run
2026-05-22 19:23:43 +00:00
typecheck:
command: cargo check
2026-05-22 19:23:43 +00:00
inputs:
- Cargo.toml
- src/**/*.rs
test:
command: cargo test
inputs:
- Cargo.toml
- src/**/*.rs
build:
command: cargo build --release
inputs:
- Cargo.toml
- src/**/*.rs