SudokuSolver/Justfile

11 lines
146 B
Makefile
Raw Normal View History

2023-12-05 12:42:38 +01:00
run:
./gradlew run
test:
./gradlew test
clean:
2023-12-05 15:34:48 +01:00
fd -td -I build -x rm -r
watch:
watchexec -c -w app/src "just test && just run"