code-katas/php/justfile

16 lines
350 B
Makefile
Raw Permalink Normal View History

2022-09-27 13:22:00 +00:00
# List all recipes.
default:
just --list
# Run a Composer command.
composer *args:
docker compose run --rm -it php composer {{ args }}
# Run tests with Pest.
test *args:
clear
docker compose run --rm -it php pest {{ args }}
# Run tests with Pest and watch for changes.
test-watch *args:
find src tests -type f | entr just test {{ args }}