monorepo/Taskfile.yml
Savanni D'Gerinel 0e3fac90a7
Some checks failed
Monorepo build / build-flake (push) Has been cancelled
Start writing out user stories for game creation
2025-12-02 23:35:07 -05:00

40 lines
858 B
YAML

version: "3"
tasks:
build:
cmds:
- cargo build -p cyberpunk-splash
- cargo build -p dashboard
- cargo build -p fitnesstrax
- cargo build -p l10n-db
- cd visions/server && task build
- cd visions/ui && task build
update:
cmds:
- task build
- crate2nix generate
- nix build
lint:
cmds:
- cargo clippy
report:
cmds:
- cargo watch -x 'run --bin planning-report planning/'
test-all:
cmds:
- which cargo
- cargo test -p cyberpunk
- cargo test -p cyberpunk-splash
- cargo test -p dashboard
- cargo test -p emseries
# - cargo test -p fitnesstrax
- cargo test -p l10n-db
- cargo test -p memorycache
- cd visions/server && task test
- cd visions/visions-core && task test
- cd visions/ui && task test