Makefile 196 B

1234567891011121314
  1. # Test steps, install, lint, test.
  2. test: install lint-ci test-ci
  3. # Composer install step
  4. install:
  5. composer install
  6. # Linter step
  7. lint-ci:
  8. composer lint
  9. # Test step
  10. test-ci:
  11. composer test-ci