SudokuSolver/Justfile
2023-12-05 15:34:48 +01:00

11 lines
No EOL
146 B
Makefile

run:
./gradlew run
test:
./gradlew test
clean:
fd -td -I build -x rm -r
watch:
watchexec -c -w app/src "just test && just run"