Makefile 276 B

12345678910111213141516171819
  1. all: clean coverage
  2. release: tag
  3. git push origin --tags
  4. tag:
  5. chag tag --sign --debug CHANGELOG.rst
  6. test:
  7. vendor/bin/phpunit
  8. coverage:
  9. vendor/bin/phpunit --coverage-html=artifacts/coverage
  10. view-coverage:
  11. open artifacts/coverage/index.html
  12. clean:
  13. rm -rf artifacts/*