diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 920a0ce..35397fc 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -28,8 +28,8 @@ jobs: restore-keys: ${{ matrix.php }}-composer- - name: Install dependencies - run: composer install --prefer-dist --no-progress --no-suggest + run: make setup_application - name: Run test suite - run: vendor/bin/phpunit + run: make test_application diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1030ad5 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: setup_application +setup_application: + composer install --prefer-dist --no-progress + +.PHONY: test_application + test_application: + php vendor/bin/phpunit