We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85b6324 commit 424447aCopy full SHA for 424447a
.github/workflows/php.yml
@@ -28,8 +28,8 @@ jobs:
28
restore-keys: ${{ matrix.php }}-composer-
29
30
- name: Install dependencies
31
- run: composer install --prefer-dist --no-progress --no-suggest
+ run: make setup_application
32
33
- name: Run test suite
34
- run: vendor/bin/phpunit
+ run: make test_application
35
Makefile
@@ -0,0 +1,7 @@
1
+.PHONY: setup_application
2
+setup_application:
3
+ composer install --prefer-dist --no-progress
4
+
5
+.PHONY: test_application
6
+ test_application:
7
+ php vendor/bin/phpunit
0 commit comments