Makefile 189 B

12345678910111213
  1. all: clean test
  2. test:
  3. vendor/bin/phpunit
  4. coverage:
  5. vendor/bin/phpunit --coverage-html=artifacts/coverage
  6. view-coverage:
  7. open artifacts/coverage/index.html
  8. clean:
  9. rm -rf artifacts/*